Beispiel #1
0
        public void Test_Robot_CommunicationHandler_ConvertInputToCommandList_When_PositionIsNull_ArgumentNullException()
        {
            //Arrange
            Action arrange;

            //Act
            arrange = new Action(() =>
            {
                communicationHandler.ConvertInputToCommandList("", null);
            });

            //Assert
            Assert.Throws <ArgumentNullException>(arrange);
        }