コード例 #1
0
ファイル: StdoutTest.php プロジェクト: hpbuniat/notifyy
 /**
  * Test simple add call
  */
 public function testNotify()
 {
     $sText = md5(time());
     $this->assertInstanceOf('\\notifyy\\AbstractAdapter', $this->_object->notify(\notifyy\Notifyable::SUCCESS, $sText));
     $this->expectOutputRegex(sprintf('/%s/', $sText));
 }
コード例 #2
0
ファイル: cli.php プロジェクト: ybluesky/h2o
 /**
  * 命令行使用方法
  */
 public function actHelp()
 {
     Stdout::title('Welcome to First example!');
     return Stdout::get();
 }