コード例 #1
0
ファイル: PhpTest.php プロジェクト: WarToaster/HangOn
 public function testDeleteThrowException()
 {
     $Php = new MockPhp(array('init' => false));
     $this->expectException('/Could not start session./');
     $Php->delete('whatever');
 }
コード例 #2
0
ファイル: PhpTest.php プロジェクト: unionofrad/lithium
 public function testDeleteThrowException()
 {
     $php = new MockPhp(array('init' => false));
     $this->assertException('/Could not start session./', function () use($php) {
         $php->delete('whatever');
     });
 }