Esempio n. 1
0
 public function testThrowOSSExceptionWithMessageIfEmpty3()
 {
     $null = "xx";
     try {
         Util::throwOSSExceptionWithMessageIfEmpty($null, "xx");
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->assertTrue(false);
     }
 }