示例#1
0
 public function testIsPositionalArguments()
 {
     $server = new Server();
     $this->assertFalse($server->isPositionalArguments(array('a' => 'b', 'c' => 'd'), array('a' => 'b', 'c' => 'd')));
     $server = new Server();
     $this->assertTrue($server->isPositionalArguments(array('a', 'b', 'c'), array('a' => 'b', 'c' => 'd')));
 }