public void ReturnNorthWhenGetLeftDirectionIsCalled() { East east = East.GetInstance(); var result = east.GetLeftDirection(); Assert.NotNull(result); Assert.IsType <North>(result); }