<?php
/**
* Defines {@link PUnit_Test_CaseD}.
*
* @package PUnit
*
* @author Stephen Feest
*
* @version $Id: CaseD.php 71 2007-11-25 00:54:25Z sfeest $
*/
/**
* A sample case.
*/
final class PUnit_Test_CaseD extends PUnit_Test_CaseA
{
/**
* Initializes a new instance.
*
* @param mixed $param2286 An optional parameter.
* @param mixed $param0968 An optional parameter.
*/
public function __construct($param2286 = NULL, $param0968 = NULL) {}
/**
* A sample test.
*
* @return void
*/
public function test4895()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_Test_ExceptionA('@ 9641 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test0901()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_Test_ExceptionB('@ 4970 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test8881()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_Test_ExceptionC('@ 8800 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test5950()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new Exception('@ 8516 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test9482()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_Exception('@ 2413 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test2538()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_AssertionException('@ 1008 message <>]]>&\'" @');
}
/**
* A sample test.
*
* @return void
*/
public function test8906()
{
$this->setExpectedException('PUnit_Test_ExceptionB');
throw new PUnit_Test_ExceptionD('@ 6083 message <>]]>&\'" @');
}
}
?>