isUseSSL() public méthode

public isUseSSL ( ) : boolean
Résultat boolean
 public function testConstrunct7()
 {
     try {
         $ossClient = new OssClient(Config::OSS_ACCESS_ID, Config::OSS_ACCESS_KEY, "http://123.123.123.1");
         $this->assertFalse($ossClient->isUseSSL());
     } catch (OssException $e) {
         $this->assertTrue(false);
     }
 }
Exemple #2
0
 public function testConstrunct7()
 {
     try {
         $ossClient = new OssClient('id', 'key', "http://123.123.123.1");
         $this->assertFalse($ossClient->isUseSSL());
     } catch (OssException $e) {
         $this->assertTrue(false);
     }
 }