Ejemplo n.º 1
0
 public function testWhat()
 {
     $helloWorld = new HelloWorld($this->pdo);
     $this->assertFalse($helloWorld->what());
     $helloWorld->hello('Bar');
     $this->assertEquals('Bar', $helloWorld->what());
 }