You are here

public function Framework_TestCaseTest::testTypeErrorCanBeExpected in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Framework/TestCaseTest.php \Framework_TestCaseTest::testTypeErrorCanBeExpected()

@requires PHP 7 @expectedException TypeError

File

vendor/phpunit/phpunit/tests/Framework/TestCaseTest.php, line 545

Class

Framework_TestCaseTest
@since Class available since Release 2.0.0 @covers PHPUnit_Framework_TestCase

Code

public function testTypeErrorCanBeExpected() {
  $o = new ClassWithScalarTypeDeclarations();
  $o
    ->foo(null, null);
}