Home
last modified time | relevance | path

Searched refs:exception (Results 326 – 350 of 679) sorted by path

1...<<11121314151617181920>>...28

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php512 * @param mixed $exception
530 $this->expectedException = $exception;
542 * @param mixed $exception
556 $this->expectedException = $exception;
565 * @param string $exception
567 public function expectException($exception) argument
569 if (!is_string($exception)) {
573 $this->expectedException = $exception;
1936 * @param Throwable|Exception $exception
1942 public static function throwException($exception) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DErrorHandler.php66 $exception = 'PHPUnit_Framework_Error_Notice';
72 $exception = 'PHPUnit_Framework_Error_Warning';
78 $exception = 'PHPUnit_Framework_Error_Deprecated';
80 $exception = 'PHPUnit_Framework_Error';
83 throw new $exception($errstr, $errno, $errfile, $errline);
H A DPHP.php386 $exception = $error->thrownException();
388 if ($exception instanceof __PHP_Incomplete_Class) {
390 foreach ((array) $exception as $key => $value) {
395 $exception = new PHPUnit_Framework_SyntheticError(
408 return $exception;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DXML.php31 private $exception; variable in PHPUnit_Util_TestDox_ResultPrinter_XML
68 $this->exception = $e;
91 $this->exception = $e;
152 $this->exception = null;
202 if ($this->exception !== null) {
203 if ($this->exception instanceof PHPUnit_Framework_Exception) {
204 $steps = $this->exception->getSerializableTrace();
206 $steps = $this->exception->getTrace();
220 $node->setAttribute('exceptionMessage', $this->exception->getMessage());
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DConstraintTest.php3020 $exception = new DummyException('Test');
3021 $stackTrace = PHPUnit_Util_Filter::getFilteredStacktrace($exception);
3024 $constraint->evaluate($exception);
H A DTestFailureTest.php16 $exception = new PHPUnit_Framework_Exception('message');
17 $failure = new PHPUnit_Framework_TestFailure($test, $exception);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D1351.phpt28 RuntimeException: Expected rethrown exception.
31 LogicException: Expected exception.
H A D244.phpt23 Failed asserting that '123StringCode' is equal to expected exception code 'OtherString'.
26 Failed asserting that '123StringCode' is equal to expected exception code 123.
29 Failed asserting that 123 is equal to expected exception code '123String'.
H A D2731.phpt2 GH-2731: Empty exception message cannot be expected
23 Failed asserting that exception message is empty but is 'message'.
H A D765.phpt2 GH-765: Fatal error triggered in PHPUnit when exception is thrown in data provider of a test with a…
H A D873-php5.phpt20 Fatal error: Uncaught exception 'Exception' with message 'PHPUnit suppresses exceptions thrown outs…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/Trac/
H A D578.phpt32 Exception: Double printed exception
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dassertion.phpt13 if (ini_get('assert.exception') != 1) {
14 print 'skip: assert.exception=1 is required' . PHP_EOL;
H A Dexception-stack.phpt21 PHPUnit_Framework_Exception: Child exception
H A Dteamcity-inner-exceptions.phpt22 ##teamcity[testFailed name='testPrintingChildException' message='Child exception|nmessage|nFailed a…
/plugin/findologicxmlexport/vendor/sebastian/comparator/tests/
H A DArrayComparatorTest.php139 $exception = null;
145 catch (ComparisonFailure $exception) {
148 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DDOMNodeComparatorTest.php138 $exception = null;
144 catch (ComparisonFailure $exception) {
147 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DDateTimeComparatorTest.php171 $exception = null;
177 catch (ComparisonFailure $exception) {
180 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DDoubleComparatorTest.php111 $exception = null;
117 catch (ComparisonFailure $exception) {
120 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DExceptionComparatorTest.php113 $exception = null;
119 catch (ComparisonFailure $exception) {
122 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DMockObjectComparatorTest.php143 $exception = null;
149 catch (ComparisonFailure $exception) {
152 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DNumericComparatorTest.php99 $exception = null;
105 catch (ComparisonFailure $exception) {
108 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DObjectComparatorTest.php127 $exception = null;
133 catch (ComparisonFailure $exception) {
136 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DResourceComparatorTest.php99 $exception = null;
105 catch (ComparisonFailure $exception) {
108 $this->assertNull($exception, 'Unexpected ComparisonFailure');
H A DScalarComparatorTest.php135 $exception = null;
141 catch (ComparisonFailure $exception) {
144 $this->assertNull($exception, 'Unexpected ComparisonFailure');

1...<<11121314151617181920>>...28