Esempio n. 1
0
 public void ProdFibTest1()
 {
     ulong[] r = new ulong[] { 55, 89, 1 };
     CollectionAssert.AreEqual(r, ProdFib.ProductFib(4895));
 }
Esempio n. 2
0
 public void ProdFibTest3()
 {
     ulong[] r = new ulong[] { 34, 55, 0 };
     CollectionAssert.AreEqual(r, ProdFib.ProductFib(800));
 }
Esempio n. 3
0
 public void ProdFibTest5()
 {
     ulong[] r = new ulong[] { 610, 987, 1 };
     CollectionAssert.AreEqual(r, ProdFib.ProductFib(602070));
 }
Esempio n. 4
0
 public void ProdFibTest2()
 {
     ulong[] r = new ulong[] { 21, 34, 1 };
     CollectionAssert.AreEqual(r, ProdFib.ProductFib(714));
 }
Esempio n. 5
0
 public void TestMethod3()
 {
     ulong[] expected = new ulong[] { 34, 55, 0 };
     ulong[] actual   = ProdFib.ProductFib(800);
     CollectionAssert.AreEqual(expected, actual);
 }
Esempio n. 6
0
 public void TestMethod2()
 {
     ulong[] expected = new ulong[] { 21, 34, 1 };
     ulong[] actual   = ProdFib.ProductFib(714);
     CollectionAssert.AreEqual(expected, actual);
 }
Esempio n. 7
0
 public void TestMethod1()
 {
     ulong[] expected = new ulong[] { 55, 89, 1 };
     ulong[] actual   = ProdFib.ProductFib(4895);
     CollectionAssert.AreEqual(expected, actual);
 }
Esempio n. 8
0
 public void Test1()
 {
     ulong[] r = new ulong[] { 55, 89, 1 };
     Assert.AreEqual(r, ProdFib.productFib(4895));
 }