示例#1
0
 /**
  * Test for the `setTransport` method.
  *
  * @return void
  * @access public
  */
 public function testSetTransport()
 {
     $this->assertFalse($this->_object->setTransport(false));
     $this->expectException();
     $this->_object->setTransport(new stdClass());
 }