mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
44 lines
990 B
PHP
44 lines
990 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest;
|
|
|
|
use PHPUnit\TestRunner\TestResult\TestResult;
|
|
use PHPUnit\TextUI\Configuration\Configuration;
|
|
use PHPUnit\TextUI\ShellExitCodeCalculator;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class Result
|
|
{
|
|
private const int SUCCESS_EXIT = 0;
|
|
|
|
/**
|
|
* If the exit code is different from 0.
|
|
*/
|
|
public static function failed(Configuration $configuration, TestResult $result): bool
|
|
{
|
|
return ! self::ok($configuration, $result);
|
|
}
|
|
|
|
/**
|
|
* If the exit code is exactly 0.
|
|
*/
|
|
public static function ok(Configuration $configuration, TestResult $result): bool
|
|
{
|
|
return self::exitCode($configuration, $result) === self::SUCCESS_EXIT;
|
|
}
|
|
|
|
/**
|
|
* Get the test execution's exit code.
|
|
*/
|
|
public static function exitCode(Configuration $configuration, TestResult $result): int
|
|
{
|
|
$shell = new ShellExitCodeCalculator;
|
|
|
|
return $shell->calculate($configuration, $result);
|
|
}
|
|
}
|