Skip to content

Commit

Permalink
Leftover from de6ecb2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jul 18, 2015
1 parent 78c8865 commit accc042
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Framework/TestResult.php
Expand Up @@ -105,47 +105,47 @@ class PHPUnit_Framework_TestResult implements Countable
/**
* @var bool
*/
protected $enforceTimeLimit = false;
protected $beStrictAboutTodoAnnotatedTests = false;

/**
* @var bool
*/
protected $beStrictAboutTodoAnnotatedTests = false;
protected $enforceTimeLimit = false;

/**
* @var bool
* @var int
*/
protected $stopOnRisky = false;
protected $timeoutForSmallTests = 1;

/**
* @var bool
* @var int
*/
protected $stopOnIncomplete = false;
protected $timeoutForMediumTests = 10;

/**
* @var bool
* @var int
*/
protected $stopOnSkipped = false;
protected $timeoutForLargeTests = 60;

/**
* @var bool
*/
protected $lastTestFailed = false;
protected $stopOnRisky = false;

/**
* @var int
* @var bool
*/
protected $timeoutForSmallTests = 1;
protected $stopOnIncomplete = false;

/**
* @var int
* @var bool
*/
protected $timeoutForMediumTests = 10;
protected $stopOnSkipped = false;

/**
* @var int
* @var bool
*/
protected $timeoutForLargeTests = 60;
protected $lastTestFailed = false;

/**
* Registers a TestListener.
Expand Down

0 comments on commit accc042

Please sign in to comment.