コード例 #1
0
ファイル: HelloWorldTest.php プロジェクト: bercy/php
 public function testWhat()
 {
     $helloWorld = new HelloWorld($this->pdo);
     $this->assertFalse($helloWorld->what());
     $helloWorld->hello('Bar');
     $this->assertEquals('Bar', $helloWorld->what());
 }