Esempio n. 1
0
        public void TestExample1()
        {
            var solution = new Solutions.Day10();

            int result = solution.GetJoltProduct("Day10/Example1.txt");

            Assert.AreEqual(35, result);
        }
Esempio n. 2
0
        public void TestSolution1()
        {
            var solution = new Solutions.Day10();

            int result = solution.GetJoltProduct("Day10/Input.txt");

            Assert.AreEqual(2277, result);
        }