示例#1
0
        public void GetOrientation_Should_Throw_Exception_When_Dont_Have_Orientation()
        {
            //arrange
            var rover = new Rover(1, 2, _plateau);

            //act
            //assert
            Assert.Throws <ArgumentNullException>(() => rover.GetOrientation());
        }