You are here

public function Framework_TestCaseTest::testWrongException in Zircon Profile 8

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

File

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

Class

Framework_TestCaseTest
@since Class available since Release 2.0.0 @covers PHPUnit_Framework_TestCase

Code

public function testWrongException() {
  $test = new ThrowExceptionTestCase('test');
  $test
    ->setExpectedException('InvalidArgumentException');
  $result = $test
    ->run();
  $this
    ->assertEquals(1, $result
    ->failureCount());
  $this
    ->assertEquals(1, count($result));
}