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