Exemplo n.º 1
0
        public void LinqTestExampleAnswer()
        {
            var result = ProjectEulerLibrary.LinqMultiplesOf3And5(1000);

            Assert.AreEqual(233168, result);
        }
Exemplo n.º 2
0
        public void LinqTestExampleFromPage()
        {
            var result = ProjectEulerLibrary.LinqMultiplesOf3And5(10);

            Assert.AreEqual(23, result);
        }