Exemple #1
0
        public void TestExample1()
        {
            var day02 = new Solutions.Day02();

            int result = day02.GetSolution1("Day02/Example.txt");

            Assert.AreEqual(result, 2);
        }
Exemple #2
0
        public void TestSolution2()
        {
            var day02 = new Solutions.Day02();

            int result = day02.GetSolution2("Day02/Input.txt");

            Assert.AreEqual(result, 263);
        }