Exemplo n.º 1
0
        public void CalculateTreesHit()
        {
            string filePath = @"Three\DayThreeTestInputA.txt";
            var    slope    = new Slope(1, 3);

            var sut    = new DayThree();
            var result = sut.CalculateTreesHit(filePath, slope);

            Assert.Equal(7, result);
        }