Inheritance: extends SimpleExpectation
Ejemplo n.º 1
0
 function testSimpleInteger()
 {
     $expectation = new AnythingExpectation();
     $this->assertTrue($expectation->test(33));
     $this->assertTrue($expectation->test(false));
     $this->assertTrue($expectation->test(null));
 }
Ejemplo n.º 2
0
 function testSimpleInteger()
 {
     $expectation = new AnythingExpectation();
     $this->assertTrue($expectation->test(33));
     $this->assertPattern('/matches.*33/i', $expectation->testMessage(33));
 }