public void TestSolution1WithSampleData() { Problem1MultiplesOf3And5 problem1MultiplesOf3And5 = new Problem1MultiplesOf3And5(); Assert.AreEqual(23,problem1MultiplesOf3And5.Solution(10)); }
public void TestSolution1WithRealSolution() { Problem1MultiplesOf3And5 problem1MultiplesOf3And5 = new Problem1MultiplesOf3And5(); Assert.AreEqual(233168, problem1MultiplesOf3And5.Solution(1000)); }