示例#1
0
 public function testSetClient()
 {
     $command = new MockCommand();
     $client = $this->getClient();
     $command->setClient($client);
     $this->assertEquals($client, $command->getClient());
     unset($client);
     unset($command);
     $command = new MockCommand();
     $client = $this->getClient();
     $command->setClient($client)->prepare();
     $this->assertEquals($client, $command->getClient());
     $this->assertTrue($command->isPrepared());
 }