示例#1
0
 /**
  * @covers Soliant\SimpleFM\Adapter::getProtocol
  */
 public function testGetSetProtocol()
 {
     $value = $this->object->setProtocol('https');
     $this->assertTrue($value instanceof $this->object);
     $this->assertEquals($this->object->getProtocol(), 'https');
 }