. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * * Neither the name of Sebastian Bergmann nor the names of his * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @category Testing * @package PHPUnit * @author Sebastian Bergmann * @copyright 2002-2008 Sebastian Bergmann * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @version SVN: $Id: TestCaseTest.php 1985 2007-12-26 18:11:55Z sb $ * @link http://www.phpunit.de/ * @since File available since Release 2.0.0 */ require_once 'PHPUnit/Framework/TestCase.php'; require_once '_files/Error.php'; require_once '_files/Failure.php'; require_once '_files/NoArgTestCaseTest.php'; require_once '_files/SetupFailure.php'; require_once '_files/Success.php'; require_once '_files/TearDownFailure.php'; require_once '_files/ThrowExceptionTestCase.php'; require_once '_files/ThrowNoExceptionTestCase.php'; require_once '_files/TornDown.php'; require_once '_files/TornDown2.php'; require_once '_files/TornDown3.php'; require_once '_files/TornDown4.php'; require_once '_files/WasRun.php'; /** * * * @category Testing * @package PHPUnit * @author Sebastian Bergmann * @copyright 2002-2008 Sebastian Bergmann * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @version Release: 3.2.9 * @link http://www.phpunit.de/ * @since Class available since Release 2.0.0 */ class Framework_TestCaseTest extends PHPUnit_Framework_TestCase { public function testCaseToString() { $this->assertEquals('testCaseToString(Framework_TestCaseTest)', $this->toString()); } public function testError() { $this->verifyError(new Error()); } public function testExceptionRunningAndTearDown() { $result = new PHPUnit_Framework_TestResult(); $t = new TornDown4(); $t->run($result); $errors = $result->errors(); $this->assertEquals('tearDown', $errors[0]->thrownException()->getMessage()); } public function testFailure() { $this->verifyFailure(new Failure()); } /* PHP does not support anonymous classes public function testNamelessTestCase() { } */ public function testNoArgTestCasePasses() { $result = new PHPUnit_Framework_TestResult(); $t = new PHPUnit_Framework_TestSuite('NoArgTestCaseTest'); $t->run($result); $this->assertEquals(1, count($result)); $this->assertEquals(0, $result->failureCount()); $this->assertEquals(0, $result->errorCount()); } public function testRunAndTearDownFails() { $fails = new TornDown2(); $this->verifyError($fails); $this->assertTrue($fails->tornDown); } public function testSetupFails() { $this->verifyError(new SetupFailure()); } public function testSuccess() { $this->verifySuccess(new Success()); } public function testTearDownAfterError() { $fails = new TornDown(); $this->verifyError($fails); $this->assertTrue($fails->tornDown); } public function testTearDownFails() { $this->verifyError(new TearDownFailure()); } public function testTearDownSetupFails() { $fails = new TornDown3(); $this->verifyError($fails); $this->assertFalse($fails->tornDown); } public function testWasRun() { $test = new WasRun(); $test->run(); $this->assertTrue($test->wasRun); } public function testException() { $test = new ThrowExceptionTestCase('test'); $test->setExpectedException('Exception'); $result = $test->run(); $this->assertEquals(1, count($result)); $this->assertTrue($result->wasSuccessful()); } public function testNoException() { $test = new ThrowNoExceptionTestCase('test'); $test->setExpectedException('Exception'); $result = $test->run(); $this->assertEquals(1, $result->failureCount()); $this->assertEquals(1, count($result)); } public function testWrongException() { $test = new ThrowExceptionTestCase('test'); $test->setExpectedException('RuntimeException'); $result = $test->run(); $this->assertEquals(1, $result->errorCount()); $this->assertEquals(1, count($result)); } protected function verifyError(PHPUnit_Framework_TestCase $test) { $result = $test->run(); $this->assertEquals(1, $result->errorCount()); $this->assertEquals(0, $result->failureCount()); $this->assertEquals(1, count($result)); } protected function verifyFailure(PHPUnit_Framework_TestCase $test) { $result = $test->run(); $this->assertEquals(0, $result->errorCount()); $this->assertEquals(1, $result->failureCount()); $this->assertEquals(1, count($result)); } protected function verifySuccess(PHPUnit_Framework_TestCase $test) { $result = $test->run(); $this->assertEquals(0, $result->errorCount()); $this->assertEquals(0, $result->failureCount()); $this->assertEquals(1, count($result)); } } ?>