public void ReturnEastWhenGetRightDirectionIsCalled()
        {
            North north = North.GetInstance();

            var result = north.GetRightDirection();

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