Inheritance: Fourth.Tradesimple.Fogbugz.FogbugzCommand
Ejemplo n.º 1
0
 public void Fogbugz_command_will_encode_its_parameters()
 {
     this.command = new TestCommand(param1: "value with \"space\"", param2: 42);
     string query = this.command.ToQueryString();
     query.ShouldContain("param1=value+with+%22space%22&param2=42");
 }
Ejemplo n.º 2
0
 public CommandTests()
 {
     this.command = new TestCommand(param1: "foo", param2: 42);
 }