Example #1
0
 /**
  * Validates setCallable works independently of the constructor.
  *
  * @author Daniel Sherman
  * @test
  * @depends testGetCallable
  * @covers ::setCallable
  */
 public function testSetCallable()
 {
     $test = new Caller('is_array');
     $test->setCallable('is_bool');
     $this->assertEquals('is_bool', $test->getCallable());
 }