assertTrue(is_null($foo)); $this->assertTrue(is_array($foo)); $this->assertTrue(is_nan($foo)); $this->assertTrue(is_readable($foo)); } /** * Foo. * @expectedException FooException * @expectedExceptionCode 123 */ function test_php_unit_no_expectation_annotation_32() { bbb(); } /** * Foo. * @expectedException FooException * @expectedExceptionMessageRegExp /foo.*$/ * @expectedExceptionCode 123 */ function test_php_unit_no_expectation_annotation_43() { ccc(); } public function test_mock_54() { $mock = $this->getMockWithoutInvokingTheOriginalConstructor("Foo"); } public function test_php_unit_expectation_52() { $this->setExpectedException("RuntimeException", "Msg", 123); } public function test_php_unit_expectation_56() { $this->setExpectedExceptionRegExp("RuntimeException", "/Msg.*/", 123); } }