Ejemplo n.º 1
0
 public function test()
 {
     $bind = new Bind('name', 'Mary');
     $bind->setValue('Hacker');
     $this->assertEquals('Hacker', $bind->getValue());
     $this->assertEquals('name', $bind->getName());
     $this->assertEquals(':name', $bind->getMarker());
 }