예제 #1
0
        public void ReturnNorthWhenGetLeftDirectionIsCalled()
        {
            East east = East.GetInstance();

            var result = east.GetLeftDirection();

            Assert.NotNull(result);
            Assert.IsType <North>(result);
        }