Beispiel #1
0
        public void FabricIntersection_Final_GetIntersectionNumber()
        {
            var fabricsIntersection = new FabricIntersection();

            var count = fabricsIntersection.GetIntersectionsCount(Day4Consts.Input1Path);

            Assert.Equal(110195, count);
        }
Beispiel #2
0
        public void FabricIntersection_Small_GetIntersectionNumber()
        {
            var fabricsIntersection = new FabricIntersection();

            var count = fabricsIntersection.GetIntersectionsCount(Day4Consts.Input1PathSmall);

            Assert.Equal(4, count);
        }