Example #1
0
        public void Can_Instantiate_New_MoveRequestBuilder()
        {
            //Act
            var builder = new MoveRequestBuilder();

            //Assert
            Assert.That(builder, Is.Not.Null);
        }
Example #2
0
        public Command BuildMoveCommand()
        {
            var command = new Command("move");
            var builder = new MoveRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildPostCommand());
            return(command);
        }
Example #3
0
 public void Setup()
 {
     _builder = new MoveRequestBuilder();
 }