Example #1
0
 /**
  * @covers \Cougar\RestClient\CurlWrapper::setClientSSLCertificate
  * @expectedException \Cougar\Exceptions\Exception
  */
 public function testSetClientSSLCertificateBadFile()
 {
     $cert_file = "/path/to/non/existing/file";
     $this->assertNull($this->object->setClientSSLCertificate($cert_file));
 }