PHPUnit2
[ class tree: PHPUnit2 ] [ index: PHPUnit2 ] [ all elements ]

Source for file TestFailure.php

Documentation is available at TestFailure.php

  1. <?php
  2. //
  3. // +------------------------------------------------------------------------+
  4. // | PEAR :: PHPUnit2                                                       |
  5. // +------------------------------------------------------------------------+
  6. // | Copyright (c) 2002-2004 Sebastian Bergmann <sb@sebastian-bergmann.de>. |
  7. // +------------------------------------------------------------------------+
  8. // | This source file is subject to version 3.00 of the PHP License,        |
  9. // | that is available at http://www.php.net/license/3_0.txt.               |
  10. // | If you did not receive a copy of the PHP license and are unable to     |
  11. // | obtain it through the world-wide-web, please send a note to            |
  12. // | license@php.net so we can mail you a copy immediately.                 |
  13. // +------------------------------------------------------------------------+
  14. //
  15. // $Id: TestFailure.php,v 1.3 2004/04/15 16:59:40 sebastian Exp $
  16. //
  17.  
  18. require_once 'PHPUnit2/Framework/Test.php';
  19.  
  20. /**
  21.  * A TestFailure collects a failed test together with the caught exception.
  22.  *
  23.  * @author      Sebastian Bergmann <sb@sebastian-bergmann.de>
  24.  * @copyright   Copyright &copy; 2002-2004 Sebastian Bergmann <sb@sebastian-bergmann.de>
  25.  * @license     http://www.php.net/license/3_0.txt The PHP License, Version 3.0
  26.  * @category    PHP
  27.  * @package     PHPUnit2
  28.  * @subpackage  Framework
  29.  */
  30.     // {{{ Members
  31.  
  32.     /**
  33.     * @var    PHPUnit2_Framework_Test 
  34.     * @access protected
  35.     */
  36.     protected $failedTest;
  37.  
  38.     /**
  39.     * @var    Exception 
  40.     * @access protected
  41.     */
  42.     protected $thrownException;
  43.  
  44.     // }}}
  45.     // {{{ public function __construct(PHPUnit2_Framework_Test $failedTest, Exception $thrownException)
  46.  
  47.     /**
  48.     * Constructs a TestFailure with the given test and exception.
  49.     *
  50.     * @param  PHPUnit2_Framework_Test $failedTest 
  51.     * @param  Exception               $thrownException 
  52.     * @access public
  53.     */
  54.     public function __construct(PHPUnit2_Framework_Test $failedTestException $thrownException{
  55.         $this->failedTest      = $failedTest;
  56.         $this->thrownException = $thrownException;
  57.     }
  58.  
  59.     // }}}
  60.     // {{{ public function toString()
  61.  
  62.     /**
  63.     * Returns a short description of the failure.
  64.     *
  65.     * @return string 
  66.     * @access public
  67.     */
  68.     public function toString({
  69.         return sprintf(
  70.           '%s: %s',
  71.  
  72.           $this->failedTest,
  73.           $this->thrownException->getMessage()
  74.         );
  75.     }
  76.  
  77.     // }}}
  78.     // {{{ public function failedTest()
  79.  
  80.     /**
  81.     * Gets the failed test.
  82.     *
  83.     * @return Test 
  84.     * @access public
  85.     */
  86.     public function failedTest({
  87.         return $this->failedTest;
  88.     }
  89.  
  90.     // }}}
  91.     // {{{ public function thrownException()
  92.  
  93.     /**
  94.     * Gets the thrown exception.
  95.     *
  96.     * @return Exception 
  97.     * @access public
  98.     */
  99.     public function thrownException({
  100.         return $this->thrownException;
  101.     }
  102.  
  103.     // }}}
  104.     // {{{ public function exceptionMessage()
  105.  
  106.     /**
  107.     * Returns the exception's message.
  108.     *
  109.     * @return string 
  110.     * @access public
  111.     */
  112.     public function exceptionMessage({
  113.         return $this->thrownException()->getMessage();
  114.     }
  115.  
  116.     // }}}
  117.     // {{{ public function isFailure()
  118.  
  119.     /**
  120.     * Returns TRUE if the thrown exception
  121.     * is of type AssertionFailedError.
  122.     *
  123.     * @return boolean 
  124.     * @access public
  125.     */
  126.     public function isFailure({
  127.         return ($this->thrownException(instanceof PHPUnit2_Framework_AssertionFailedError);
  128.     }
  129.  
  130.     // }}}
  131. }
  132.  
  133. /*
  134.  * vim600:  et sw=2 ts=2 fdm=marker
  135.  * vim<600: et sw=2 ts=2
  136.  */
  137. ?>

Documentation generated on Mon, 11 Mar 2019 13:55:58 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.