You are here

ExceptionStackTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/ExceptionStackTest.php

File

vendor/phpunit/phpunit/tests/_files/ExceptionStackTest.php
View source
<?php

class ExceptionStackTest extends PHPUnit_Framework_TestCase {
  public function testPrintingChildException() {
    try {
      $this
        ->assertEquals(array(
        1,
      ), array(
        2,
      ), 'message');
    } catch (PHPUnit_Framework_ExpectationFailedException $e) {
      $message = $e
        ->getMessage() . $e
        ->getComparisonFailure()
        ->getDiff();
      throw new PHPUnit_Framework_Exception("Child exception\n{$message}", 101, $e);
    }
  }
  public function testNestedExceptions() {
    $exceptionThree = new Exception('Three');
    $exceptionTwo = new InvalidArgumentException('Two', 0, $exceptionThree);
    $exceptionOne = new Exception('One', 0, $exceptionTwo);
    throw $exceptionOne;
  }

}

Classes

Namesort descending Description
ExceptionStackTest