コード例 #1
0
ファイル: ProfileTest.php プロジェクト: rafalwrzeszcz/zf2
 public function testProfileThrowsExceptionOnStoreToFile()
 {
     $profile = new Profile();
     // missing file path or project path
     $this->setExpectedException('Zend\\Tool\\Project\\Profile\\Exception\\RuntimeException');
     $profile->storeToFile();
 }