wasSuccessful() публичный Метод

Returns whether the entire test was successful or not.
public wasSuccessful ( ) : boolean
Результат boolean
Пример #1
0
 public function testNavigationAccessTest()
 {
     $suite = new PHPUnit_Framework_TestSuite();
     $suite->addTestSuite('AccessNavigationTest');
     $suite->run($result = new PHPUnit_Framework_TestResult());
     $this->assertEquals(5, $result->count());
     $this->assertTrue($result->wasSuccessful());
 }
Пример #2
0
 public function testAclIsTested()
 {
     $suite = new PHPUnit_Framework_TestSuite();
     $suite->addTestSuite('FooAclTest');
     $suite->run($result = new PHPUnit_Framework_TestResult());
     $this->assertTrue($result->wasSuccessful(), 'Test should be run successfully');
     $this->assertEquals(2, $result->count());
 }
Пример #3
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  * @access protected
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful() && $result->allCompletlyImplemented() && $result->noneSkipped()) {
         $this->write("\n" . ($result = sprintf("OK (%d test%s, %d assertion%s)", count($result), count($result) == 1 ? '' : 's', $this->numAssertions, $this->numAssertions == 1 ? '' : 's')) . str_repeat(' ', 80 - strlen($result)) . "\n");
     } elseif ((!$result->allCompletlyImplemented() || !$result->noneSkipped()) && $result->wasSuccessful()) {
         $this->write("\nOk, but incomplete or skipped tests!                                            \n" . sprintf("Tests: %d, Assertions: %d%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
     } else {
         $this->write(sprintf("\nFailures                                                                        \n" . "Tests: %d, Assertions: %s%s%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->failureCount(), 'Failures'), $this->getCountString($result->errorCount(), 'Errors'), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
     }
 }
Пример #4
0
 protected function assertTestsAreSuccessful(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful()) {
         return;
     }
     $msg = "Test should pass, instead there are {$result->errorCount()} errors:\n";
     /** @var $error PHPUnit_Framework_TestFailure */
     foreach ($result->errors() as $error) {
         $msg .= $error->exceptionMessage();
     }
     $this->fail($msg);
 }
Пример #5
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful() && $result->allCompletlyImplemented() && $result->noneSkipped()) {
         if ($this->colors) {
             $this->write("");
         }
         $this->write(sprintf("OK (%d test%s, %d assertion%s)\n", count($result), count($result) == 1 ? '' : 's', $this->numAssertions, $this->numAssertions == 1 ? '' : 's'));
         if ($this->colors) {
             $this->write("");
         }
     } else {
         if ((!$result->allCompletlyImplemented() || !$result->noneSkipped()) && $result->wasSuccessful()) {
             if ($this->colors) {
                 $this->write("OK, but incomplete or skipped tests!\n" . "");
             } else {
                 $this->write("OK, but incomplete or skipped tests!\n");
             }
             $this->write(sprintf("Tests: %d, Assertions: %d%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
             if ($this->colors) {
                 $this->write("");
             }
         } else {
             $this->write("\n");
             if ($this->colors) {
                 $this->write("FAILURES!\n");
             } else {
                 $this->write("FAILURES!\n");
             }
             $this->write(sprintf("Tests: %d, Assertions: %s%s%s%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->failureCount(), 'Failures'), $this->getCountString($result->errorCount(), 'Errors'), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
             if ($this->colors) {
                 $this->write("");
             }
         }
     }
     if (!$this->verbose && $result->deprecatedFeaturesCount() > 0) {
         $message = sprintf("Warning: Deprecated PHPUnit features are being used %s times!\n" . "Use --verbose for more information.\n", $result->deprecatedFeaturesCount());
         if ($this->colors) {
             $message = "" . $message . "";
         }
         $this->write("\n" . $message);
     }
 }
Пример #6
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful() && $result->allCompletlyImplemented() && $result->noneSkipped()) {
         if ($this->colors) {
             $this->write("");
         }
         $this->write(sprintf("OK (%d test%s, %d assertion%s)\n", count($result), count($result) == 1 ? '' : 's', $this->numAssertions, $this->numAssertions == 1 ? '' : 's'));
         if ($this->colors) {
             $this->write("");
         }
     } else {
         if ((!$result->allCompletlyImplemented() || !$result->noneSkipped()) && $result->wasSuccessful()) {
             if ($this->colors) {
                 $this->write("OK, but incomplete or skipped tests!\n" . "");
             } else {
                 $this->write("OK, but incomplete or skipped tests!\n");
             }
             $this->write(sprintf("Tests: %d, Assertions: %d%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
             if ($this->colors) {
                 $this->write("");
             }
         } else {
             $this->write("\n");
             if ($this->colors) {
                 $this->write("FAILURES!\n");
             } else {
                 $this->write("FAILURES!\n");
             }
             $this->write(sprintf("Tests: %d, Assertions: %s%s%s%s%s.\n", count($result), $this->numAssertions, $this->getCountString($result->failureCount(), 'Failures'), $this->getCountString($result->errorCount(), 'Errors'), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
             if ($this->colors) {
                 $this->write("");
             }
         }
     }
 }
Пример #7
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  * @access protected
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful() && $result->allCompletlyImplemented() && $result->noneSkipped()) {
         $this->write(sprintf("\nOK (%d test%s)\n", count($result), count($result) == 1 ? '' : 's'));
     } else {
         if ((!$result->allCompletlyImplemented() || !$result->noneSkipped()) && $result->wasSuccessful()) {
             $this->write(sprintf("\nOK, but incomplete or skipped tests!\n" . "Tests: %d%s%s.\n", count($result), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
         } else {
             $this->write(sprintf("\nFAILURES!\n" . "Tests: %d%s%s%s%s.\n", count($result), $this->getCountString($result->failureCount(), 'Failures'), $this->getCountString($result->errorCount(), 'Errors'), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
         }
     }
 }
Пример #8
0
    /**
     * Renders and output the tests statistics.
     *
     * @param PHPUnit_Framework_TestResult $testResult the test result
     *
     * @return void
     */
    protected function renderTestStatistics(PHPUnit_Framework_TestResult $testResult)
    {
        if ($testResult->wasSuccessful()) {
            $testStatistics = '<h2 class="wasSuccessful">' . $this->translate('testing_success') . '</h2>';
        } else {
            if ($testResult->errorCount() > 0) {
                $testStatistics = '<script type="text/javascript">/*<![CDATA[*/setProgressBarClass("hadError");/*]]>*/</script>
					<h2 class="hadError">' . $this->translate('testing_failure') . '</h2>';
            } else {
                $testStatistics = '<script type="text/javascript">/*<![CDATA[*/setProgressBarClass("hadFailure");/*]]>*/</script>
					<h2 class="hadFailure">' . $this->translate('testing_failure') . '</h2>';
            }
        }
        $testStatistics .= '<p>' . $testResult->count() . ' ' . $this->translate('tests_total') . ', ' . $this->testListener->assertionCount() . ' ' . $this->translate('assertions_total') . ', ' . $testResult->failureCount() . ' ' . $this->translate('tests_failures') . ', ' . $testResult->skippedCount() . ' ' . $this->translate('tests_skipped') . ', ' . $testResult->notImplementedCount() . ' ' . $this->translate('tests_incomplete') . ', ' . $testResult->errorCount() . ' ' . $this->translate('tests_errors') . ', <span title="' . $this->testStatistics->getTime() . '&nbsp;' . $this->translate('tests_seconds') . '">' . round($this->testStatistics->getTime(), 3) . '&nbsp;' . $this->translate('tests_seconds') . ', </span>' . t3lib_div::formatSize($this->testStatistics->getMemory()) . 'B (' . $this->testStatistics->getMemory() . ' B) ' . $this->translate('tests_leaks') . '</p>';
        $this->outputService->output($testStatistics);
    }
Пример #9
0
 /**
  * Returns test run status based on session strategy requested by browser.
  *
  * @param BrowserTestCase               $test_case   Browser test case.
  * @param \PHPUnit_Framework_TestResult $test_result Test result.
  *
  * @return boolean
  * @see    IsolatedSessionStrategy
  * @see    SharedSessionStrategy
  */
 public function getTestStatus(BrowserTestCase $test_case, \PHPUnit_Framework_TestResult $test_result)
 {
     if ($this->isShared()) {
         // All tests in a test case use same session -> failed even if 1 test fails.
         return $test_result->wasSuccessful();
     }
     // Each test in a test case are using it's own session -> failed if test fails.
     return !$test_case->hasFailed();
 }
 /**
  * Asserts that the given result belongs to a test that failed.
  *
  * @param PHPUnit_Framework_TestResult $result
  */
 protected function assertFailed(PHPUnit_Framework_TestResult $result)
 {
     $message = 'Test was expected to fail, but it was executed successfully.';
     $this->assertFalse($result->wasSuccessful(), $message);
 }
Пример #11
0
 /**
  * Compute a shell exit status for the given result.
  * Behaves like PHPUnit_TextUI_Command.
  *
  * @param      PHPUnit_Framework_TestResult The test result object.
  *
  * @return     int The shell exit code.
  * @deprecated 1.1.0 Use AgaviPhpUnitCli
  */
 public static function getExitStatus(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful()) {
         return PHPUnit_TextUI_TestRunner::SUCCESS_EXIT;
     } elseif ($result->errorCount()) {
         return PHPUnit_TextUI_TestRunner::EXCEPTION_EXIT;
     } else {
         return PHPUnit_TextUI_TestRunner::FAILURE_EXIT;
     }
 }
Пример #12
0
 public static function formatTestResult(\PHPUnit_Framework_TestResult $result, $assertions)
 {
     $tests = $result->count();
     $errors = $result->errorCount();
     $failures = $result->failureCount();
     $skipped = $result->skippedCount();
     $incomplete = $result->notImplementedCount();
     $msg = self::formatResultPart($errors, 'error', 's');
     $msg .= self::formatResultPart($failures, 'failure', 's');
     $msg .= self::formatResultPart($skipped, 'skipped');
     $msg .= self::formatResultPart($incomplete, 'incomplete');
     return sprintf('%s (%d %s, %d %s%s)', $result->wasSuccessful() ? 'OK' : 'FAILED', $tests, $tests != 1 ? 'tests' : 'test', $assertions, $assertions != 1 ? 'assertions' : 'assertion', $msg);
 }
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  * @access protected
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful() && $result->allCompletlyImplemented() && $result->noneSkipped()) {
         $this->write(sprintf("<tfoot><tr style='background-color: green'><td colspan='5'>OK (%d test%s)</td>/<tr></tfoot>", count($result), count($result) == 1 ? '' : 's'));
     } else {
         if ((!$result->allCompletlyImplemented() || !$result->noneSkipped()) && $result->wasSuccessful()) {
             $this->write(sprintf("<tfoot><tr style='background-color: yellow'><td colspan='5'>OK, but incomplete or skipped tests! Tests: %d%s%s.</td>/<tr></tfoot>", count($result), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
         } else {
             $this->write(sprintf("<tfoot><tr style='background-color: red'><td colspan='5'>FAILURES ! Tests: %d%s%s.</td>/<tr></tfoot>", count($result), $this->getCountString($result->failureCount(), 'Failures'), $this->getCountString($result->errorCount(), 'Errors'), $this->getCountString($result->notImplementedCount(), 'Incomplete'), $this->getCountString($result->skippedCount(), 'Skipped')));
         }
     }
     $this->write('</table>');
 }
Пример #14
0
 /**
  * @param  PHPUnit_Framework_TestResult  $result
  * @access protected
  */
 protected function printFooter(PHPUnit_Framework_TestResult $result)
 {
     if ($result->wasSuccessful()) {
         printf("\nOK (%d test%s)\n", $result->runCount(), $result->runCount() == 1 ? '' : 's');
     } else {
         printf("\nFAILURES!!!\nTests run: %d, Failures: %d, Errors: %d.\n", $result->runCount(), $result->failureCount(), $result->errorCount());
     }
 }