コード例 #1
0
ファイル: AdapterTest.php プロジェクト: rjakes/SimpleFM
 /**
  * @covers Soliant\SimpleFM\Adapter::getCommandstring
  */
 public function testGetSetCommandstring()
 {
     $value = $this->object->setCommandstring('A=B&C=D&E=F');
     $this->assertTrue($value instanceof $this->object);
     $this->assertEquals($this->object->getCommandstring(), 'A=B&C=D&E=F');
 }