Esempio n. 1
0
 public void Test2_TestMethod3()
 {
     var test = new Test2.Solution();
     int[] A = test.Decimal2Base(100000);
     int[] negA = test.solution(A);
     Assert.AreEqual(IsEqual(A, test.solution(negA)), true);
 }
Esempio n. 2
0
 public void Test2_TestMethod2()
 {
     var test = new Test2.Solution();
     int[] A = new int[] { 0, 0, 0, 0, 0, 1 };
     int[] negA = test.solution(A);
     Assert.AreEqual(IsEqual(A, test.solution(negA)), true);
 }