mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c20e8114e | |||
| 73a859ee56 | |||
| 4196579a3d | |||
| 436b20857d | |||
| 82b0adf5ae | |||
| a0041f139c | |||
| b25bc7ee05 | |||
| faafedd55c | |||
| c99325275a | |||
| 37a7583755 | |||
| a851b5ed70 | |||
| 983659f8e8 | |||
| 3e1cef296f | |||
| cada5c5136 | |||
| 477492fdd2 | |||
| 963b7f43ab | |||
| a34767fa15 | |||
| fe3c7d72bd | |||
| 97898a0a8e | |||
| cddddc3ec1 | |||
| f8930d20ae | |||
| 2e25eb59b8 | |||
| a5471fd0f4 |
24
CHANGELOG.md
24
CHANGELOG.md
@ -2,6 +2,30 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## [v2.6.3 (2023-06-07)](https://github.com/pestphp/pest/compare/v2.6.2...v2.6.3)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.2.1` ([73a859e](https://github.com/pestphp/pest/commit/73a859ee563fe96944ba39b191dceca28ef703c2))
|
||||||
|
|
||||||
|
## [v2.6.2 (2023-06-02)](https://github.com/pestphp/pest/compare/v2.6.1...v2.6.2)
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.2.0` ([a0041f1](https://github.com/pestphp/pest/commit/a0041f139cba94fe5d15318c38e275f2e2fb3350))
|
||||||
|
|
||||||
|
## [v2.6.1 (2023-04-12)](https://github.com/pestphp/pest/compare/v2.6.0...v2.6.1)
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
- PHPStorm issue output problem for tests throwing an exception before the first assertion ([#809](https://github.com/pestphp/pest/pull/809))
|
||||||
|
- Allow traits to be covered ([#804](https://github.com/pestphp/pest/pull/804))
|
||||||
|
|
||||||
|
### Chore
|
||||||
|
- Bumps PHPUnit to `^10.1.3` ([c993252](https://github.com/pestphp/pest/commit/c99325275acf1fd3759b487b93ec50473f706709))
|
||||||
|
|
||||||
|
## [v2.6.0 (2023-04-05)](https://github.com/pestphp/pest/compare/v2.5.2...v2.6.0)
|
||||||
|
|
||||||
|
### Adds
|
||||||
|
- Allows `toThrow` to be used against an exception instance ([#797](https://github.com/pestphp/pest/pull/797))
|
||||||
|
|
||||||
## [v2.5.2 (2023-04-19)](https://github.com/pestphp/pest/compare/v2.5.1...v2.5.2)
|
## [v2.5.2 (2023-04-19)](https://github.com/pestphp/pest/compare/v2.5.1...v2.5.2)
|
||||||
|
|
||||||
### Chore
|
### Chore
|
||||||
|
|||||||
@ -18,16 +18,16 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1.0",
|
"php": "^8.1.0",
|
||||||
"brianium/paratest": "^7.1.3",
|
"brianium/paratest": "^7.1.4",
|
||||||
"nunomaduro/collision": "^7.5.2",
|
"nunomaduro/collision": "^7.5.2",
|
||||||
"nunomaduro/termwind": "^1.15.1",
|
"nunomaduro/termwind": "^1.15.1",
|
||||||
"pestphp/pest-plugin": "^2.0.1",
|
"pestphp/pest-plugin": "^2.0.1",
|
||||||
"pestphp/pest-plugin-arch": "^2.1.2",
|
"pestphp/pest-plugin-arch": "^2.2.0",
|
||||||
"phpunit/phpunit": "^10.1.2"
|
"phpunit/phpunit": "^10.2.1"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"webmozart/assert": "<1.11.0",
|
"webmozart/assert": "<1.11.0",
|
||||||
"phpunit/phpunit": ">10.1.2"
|
"phpunit/phpunit": ">10.2.1"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
@ -49,8 +49,8 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"pestphp/pest-dev-tools": "^2.6.0",
|
"pestphp/pest-dev-tools": "^2.10.0",
|
||||||
"symfony/process": "^6.2.8"
|
"symfony/process": "^6.3.0"
|
||||||
},
|
},
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"config": {
|
"config": {
|
||||||
|
|||||||
@ -12,6 +12,7 @@ parameters:
|
|||||||
reportUnmatchedIgnoredErrors: true
|
reportUnmatchedIgnoredErrors: true
|
||||||
|
|
||||||
ignoreErrors:
|
ignoreErrors:
|
||||||
|
- "#has a nullable return type declaration.#"
|
||||||
- "#Language construct isset\\(\\) should not be used.#"
|
- "#Language construct isset\\(\\) should not be used.#"
|
||||||
- "#is not allowed to extend#"
|
- "#is not allowed to extend#"
|
||||||
- "#is concrete, but does not have a Test suffix#"
|
- "#is concrete, but does not have a Test suffix#"
|
||||||
@ -20,4 +21,3 @@ parameters:
|
|||||||
- "# with null as default value#"
|
- "# with null as default value#"
|
||||||
- "#has parameter \\$closure with default value.#"
|
- "#has parameter \\$closure with default value.#"
|
||||||
- "#has parameter \\$description with default value.#"
|
- "#has parameter \\$description with default value.#"
|
||||||
- "#Method Pest\\\\Support\\\\Reflection::getParameterClassName\\(\\) has a nullable return type declaration.#"
|
|
||||||
|
|||||||
@ -181,7 +181,7 @@ trait Testable
|
|||||||
|
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$beforeEach = TestSuite::getInstance()->beforeEach->get(self::$__filename);
|
$beforeEach = TestSuite::getInstance()->beforeEach->get(self::$__filename)[1];
|
||||||
|
|
||||||
if ($this->__beforeEach instanceof Closure) {
|
if ($this->__beforeEach instanceof Closure) {
|
||||||
$beforeEach = ChainableClosure::from($this->__beforeEach, $beforeEach);
|
$beforeEach = ChainableClosure::from($this->__beforeEach, $beforeEach);
|
||||||
|
|||||||
@ -90,7 +90,7 @@ final class TestCaseMethodFactory
|
|||||||
$method = $this;
|
$method = $this;
|
||||||
|
|
||||||
return function () use ($testCase, $method, $closure): mixed { // @phpstan-ignore-line
|
return function () use ($testCase, $method, $closure): mixed { // @phpstan-ignore-line
|
||||||
/* @var TestCase $this */
|
/* @var TestCase $this */
|
||||||
$testCase->proxies->proxy($this);
|
$testCase->proxies->proxy($this);
|
||||||
$method->proxies->proxy($this);
|
$method->proxies->proxy($this);
|
||||||
|
|
||||||
|
|||||||
@ -43,7 +43,7 @@ if (! function_exists('beforeEach')) {
|
|||||||
/**
|
/**
|
||||||
* Runs the given closure before each test in the current file.
|
* Runs the given closure before each test in the current file.
|
||||||
*
|
*
|
||||||
* @return HigherOrderTapProxy<TestCall|TestCase>|TestCall|mixed
|
* @return HigherOrderTapProxy<TestCall|TestCase>|TestCall|TestCase|mixed
|
||||||
*/
|
*/
|
||||||
function beforeEach(Closure $closure = null): BeforeEachCall
|
function beforeEach(Closure $closure = null): BeforeEachCall
|
||||||
{
|
{
|
||||||
|
|||||||
@ -11,6 +11,12 @@ use Pest\Support\Str;
|
|||||||
use PHPUnit\Event\Code\Test;
|
use PHPUnit\Event\Code\Test;
|
||||||
use PHPUnit\Event\Code\TestMethod;
|
use PHPUnit\Event\Code\TestMethod;
|
||||||
use PHPUnit\Event\Code\Throwable;
|
use PHPUnit\Event\Code\Throwable;
|
||||||
|
use PHPUnit\Event\Test\BeforeFirstTestMethodErrored;
|
||||||
|
use PHPUnit\Event\Test\ConsideredRisky;
|
||||||
|
use PHPUnit\Event\Test\Errored;
|
||||||
|
use PHPUnit\Event\Test\Failed;
|
||||||
|
use PHPUnit\Event\Test\MarkedIncomplete;
|
||||||
|
use PHPUnit\Event\Test\Skipped;
|
||||||
use PHPUnit\Event\TestSuite\TestSuite;
|
use PHPUnit\Event\TestSuite\TestSuite;
|
||||||
use PHPUnit\Framework\Exception as FrameworkException;
|
use PHPUnit\Framework\Exception as FrameworkException;
|
||||||
use PHPUnit\TestRunner\TestResult\TestResult as PhpUnitTestResult;
|
use PHPUnit\TestRunner\TestResult\TestResult as PhpUnitTestResult;
|
||||||
@ -188,12 +194,30 @@ final class Converter
|
|||||||
*/
|
*/
|
||||||
public function getStateFromResult(PhpUnitTestResult $result): State
|
public function getStateFromResult(PhpUnitTestResult $result): State
|
||||||
{
|
{
|
||||||
$numberOfPassedTests = $result->numberOfTestsRun()
|
$events = [
|
||||||
- $result->numberOfTestErroredEvents()
|
...$result->testErroredEvents(),
|
||||||
- $result->numberOfTestFailedEvents()
|
...$result->testFailedEvents(),
|
||||||
- $result->numberOfTestSkippedEvents()
|
...$result->testSkippedEvents(),
|
||||||
- $result->numberOfTestsWithTestConsideredRiskyEvents()
|
...array_merge(...array_values($result->testConsideredRiskyEvents())),
|
||||||
- $result->numberOfTestMarkedIncompleteEvents();
|
...$result->testMarkedIncompleteEvents(),
|
||||||
|
];
|
||||||
|
|
||||||
|
$numberOfNotPassedTests = count(
|
||||||
|
array_unique(
|
||||||
|
array_map(
|
||||||
|
function (BeforeFirstTestMethodErrored|Errored|Failed|Skipped|ConsideredRisky|MarkedIncomplete $event): string {
|
||||||
|
if ($event instanceof BeforeFirstTestMethodErrored) {
|
||||||
|
return $event->testClassName();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->getTestCaseLocation($event->test());
|
||||||
|
},
|
||||||
|
$events
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$numberOfPassedTests = $result->numberOfTestsRun() - $numberOfNotPassedTests;
|
||||||
|
|
||||||
return $this->stateGenerator->fromPhpUnitTestResult($numberOfPassedTests, $result);
|
return $this->stateGenerator->fromPhpUnitTestResult($numberOfPassedTests, $result);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,6 +16,7 @@ use Pest\Logging\TeamCity\Subscriber\TestPreparedSubscriber;
|
|||||||
use Pest\Logging\TeamCity\Subscriber\TestSkippedSubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestSkippedSubscriber;
|
||||||
use Pest\Logging\TeamCity\Subscriber\TestSuiteFinishedSubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestSuiteFinishedSubscriber;
|
||||||
use Pest\Logging\TeamCity\Subscriber\TestSuiteStartedSubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestSuiteStartedSubscriber;
|
||||||
|
use PHPUnit\Event\Code\Test;
|
||||||
use PHPUnit\Event\EventFacadeIsSealedException;
|
use PHPUnit\Event\EventFacadeIsSealedException;
|
||||||
use PHPUnit\Event\Facade;
|
use PHPUnit\Event\Facade;
|
||||||
use PHPUnit\Event\Telemetry\Duration;
|
use PHPUnit\Event\Telemetry\Duration;
|
||||||
@ -47,6 +48,11 @@ final class TeamCityLogger
|
|||||||
|
|
||||||
private bool $isSummaryTestCountPrinted = false;
|
private bool $isSummaryTestCountPrinted = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array<string, bool>
|
||||||
|
*/
|
||||||
|
private array $testEvents = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws EventFacadeIsSealedException
|
* @throws EventFacadeIsSealedException
|
||||||
* @throws UnknownSubscriberTypeException
|
* @throws UnknownSubscriberTypeException
|
||||||
@ -108,12 +114,14 @@ final class TeamCityLogger
|
|||||||
|
|
||||||
public function testSkipped(Skipped $event): void
|
public function testSkipped(Skipped $event): void
|
||||||
{
|
{
|
||||||
$message = ServiceMessage::testIgnored(
|
$this->whenFirstEventForTest($event->test(), function () use ($event): void {
|
||||||
$this->converter->getTestCaseMethodName($event->test()),
|
$message = ServiceMessage::testIgnored(
|
||||||
'This test was ignored.'
|
$this->converter->getTestCaseMethodName($event->test()),
|
||||||
);
|
'This test was ignored.'
|
||||||
|
);
|
||||||
|
|
||||||
$this->output($message);
|
$this->output($message);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -122,17 +130,19 @@ final class TeamCityLogger
|
|||||||
*/
|
*/
|
||||||
public function testErrored(Errored $event): void
|
public function testErrored(Errored $event): void
|
||||||
{
|
{
|
||||||
$testName = $this->converter->getTestCaseMethodName($event->test());
|
$this->whenFirstEventForTest($event->test(), function () use ($event): void {
|
||||||
$message = $this->converter->getExceptionMessage($event->throwable());
|
$testName = $this->converter->getTestCaseMethodName($event->test());
|
||||||
$details = $this->converter->getExceptionDetails($event->throwable());
|
$message = $this->converter->getExceptionMessage($event->throwable());
|
||||||
|
$details = $this->converter->getExceptionDetails($event->throwable());
|
||||||
|
|
||||||
$message = ServiceMessage::testFailed(
|
$message = ServiceMessage::testFailed(
|
||||||
$testName,
|
$testName,
|
||||||
$message,
|
$message,
|
||||||
$details,
|
$details,
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->output($message);
|
$this->output($message);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -141,28 +151,30 @@ final class TeamCityLogger
|
|||||||
*/
|
*/
|
||||||
public function testFailed(Failed $event): void
|
public function testFailed(Failed $event): void
|
||||||
{
|
{
|
||||||
$testName = $this->converter->getTestCaseMethodName($event->test());
|
$this->whenFirstEventForTest($event->test(), function () use ($event): void {
|
||||||
$message = $this->converter->getExceptionMessage($event->throwable());
|
$testName = $this->converter->getTestCaseMethodName($event->test());
|
||||||
$details = $this->converter->getExceptionDetails($event->throwable());
|
$message = $this->converter->getExceptionMessage($event->throwable());
|
||||||
|
$details = $this->converter->getExceptionDetails($event->throwable());
|
||||||
|
|
||||||
if ($event->hasComparisonFailure()) {
|
if ($event->hasComparisonFailure()) {
|
||||||
$comparison = $event->comparisonFailure();
|
$comparison = $event->comparisonFailure();
|
||||||
$message = ServiceMessage::comparisonFailure(
|
$message = ServiceMessage::comparisonFailure(
|
||||||
$testName,
|
$testName,
|
||||||
$message,
|
$message,
|
||||||
$details,
|
$details,
|
||||||
$comparison->actual(),
|
$comparison->actual(),
|
||||||
$comparison->expected()
|
$comparison->expected()
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$message = ServiceMessage::testFailed(
|
$message = ServiceMessage::testFailed(
|
||||||
$testName,
|
$testName,
|
||||||
$message,
|
$message,
|
||||||
$details,
|
$details,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->output($message);
|
$this->output($message);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -171,12 +183,14 @@ final class TeamCityLogger
|
|||||||
*/
|
*/
|
||||||
public function testConsideredRisky(ConsideredRisky $event): void
|
public function testConsideredRisky(ConsideredRisky $event): void
|
||||||
{
|
{
|
||||||
$message = ServiceMessage::testIgnored(
|
$this->whenFirstEventForTest($event->test(), function () use ($event): void {
|
||||||
$this->converter->getTestCaseMethodName($event->test()),
|
$message = ServiceMessage::testIgnored(
|
||||||
$event->message()
|
$this->converter->getTestCaseMethodName($event->test()),
|
||||||
);
|
$event->message()
|
||||||
|
);
|
||||||
|
|
||||||
$this->output($message);
|
$this->output($message);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testFinished(Finished $event): void
|
public function testFinished(Finished $event): void
|
||||||
@ -264,4 +278,14 @@ final class TeamCityLogger
|
|||||||
|
|
||||||
ServiceMessage::setFlowId($this->flowId);
|
ServiceMessage::setFlowId($this->flowId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function whenFirstEventForTest(Test $test, callable $callback): void
|
||||||
|
{
|
||||||
|
$testIdentifier = $this->converter->getTestCaseLocation($test);
|
||||||
|
|
||||||
|
if (! isset($this->testEvents[$testIdentifier])) {
|
||||||
|
$this->testEvents[$testIdentifier] = true;
|
||||||
|
$callback();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -842,7 +842,7 @@ final class Expectation
|
|||||||
* @param (Closure(Throwable): mixed)|string $exception
|
* @param (Closure(Throwable): mixed)|string $exception
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function toThrow(callable|string $exception, string $exceptionMessage = null, string $message = ''): self
|
public function toThrow(callable|string|Throwable $exception, string $exceptionMessage = null, string $message = ''): self
|
||||||
{
|
{
|
||||||
$callback = NullClosure::create();
|
$callback = NullClosure::create();
|
||||||
|
|
||||||
@ -864,6 +864,15 @@ final class Expectation
|
|||||||
try {
|
try {
|
||||||
($this->value)();
|
($this->value)();
|
||||||
} catch (Throwable $e) {
|
} catch (Throwable $e) {
|
||||||
|
|
||||||
|
if ($exception instanceof Throwable) {
|
||||||
|
expect($e)
|
||||||
|
->toBeInstanceOf($exception::class, $message)
|
||||||
|
->and($e->getMessage())->toBe($exceptionMessage ?? $exception->getMessage(), $message);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
if (! class_exists($exception)) {
|
if (! class_exists($exception)) {
|
||||||
if ($e instanceof Error && $e->getMessage() === "Class \"$exception\" not found") {
|
if ($e instanceof Error && $e->getMessage() === "Class \"$exception\" not found") {
|
||||||
Assert::assertTrue(true);
|
Assert::assertTrue(true);
|
||||||
@ -888,7 +897,7 @@ final class Expectation
|
|||||||
|
|
||||||
Assert::assertTrue(true);
|
Assert::assertTrue(true);
|
||||||
|
|
||||||
if (! class_exists($exception)) {
|
if (! $exception instanceof Throwable && ! class_exists($exception)) {
|
||||||
throw new ExpectationFailedException("Exception with message \"$exception\" not thrown.");
|
throw new ExpectationFailedException("Exception with message \"$exception\" not thrown.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -19,12 +19,17 @@ final class BeforeEachCall
|
|||||||
/**
|
/**
|
||||||
* Holds the before each closure.
|
* Holds the before each closure.
|
||||||
*/
|
*/
|
||||||
private readonly \Closure $closure;
|
private readonly Closure $closure;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The calls that should be proxied.
|
* The test call proxies.
|
||||||
*/
|
*/
|
||||||
private readonly HigherOrderMessageCollection $proxies;
|
private readonly HigherOrderMessageCollection $testCallProxies;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The test case proxies.
|
||||||
|
*/
|
||||||
|
private readonly HigherOrderMessageCollection $testCaseProxies;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new Pending Call.
|
* Creates a new Pending Call.
|
||||||
@ -36,7 +41,8 @@ final class BeforeEachCall
|
|||||||
) {
|
) {
|
||||||
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
||||||
|
|
||||||
$this->proxies = new HigherOrderMessageCollection();
|
$this->testCallProxies = new HigherOrderMessageCollection();
|
||||||
|
$this->testCaseProxies = new HigherOrderMessageCollection();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -44,13 +50,16 @@ final class BeforeEachCall
|
|||||||
*/
|
*/
|
||||||
public function __destruct()
|
public function __destruct()
|
||||||
{
|
{
|
||||||
$proxies = $this->proxies;
|
$testCaseProxies = $this->testCaseProxies;
|
||||||
|
|
||||||
$this->testSuite->beforeEach->set(
|
$this->testSuite->beforeEach->set(
|
||||||
$this->filename,
|
$this->filename,
|
||||||
ChainableClosure::from(function () use ($proxies): void {
|
function (TestCall $testCall): void {
|
||||||
$proxies->chain($this);
|
$this->testCallProxies->chain($testCall);
|
||||||
}, $this->closure)
|
},
|
||||||
|
ChainableClosure::from(function () use ($testCaseProxies): void {
|
||||||
|
$testCaseProxies->chain($this);
|
||||||
|
}, $this->closure),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,7 +70,13 @@ final class BeforeEachCall
|
|||||||
*/
|
*/
|
||||||
public function __call(string $name, array $arguments): self
|
public function __call(string $name, array $arguments): self
|
||||||
{
|
{
|
||||||
$this->proxies
|
if (method_exists(TestCall::class, $name)) {
|
||||||
|
$this->testCallProxies->add(Backtrace::file(), Backtrace::line(), $name, $arguments);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->testCaseProxies
|
||||||
->add(Backtrace::file(), Backtrace::line(), $name, $arguments);
|
->add(Backtrace::file(), Backtrace::line(), $name, $arguments);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
|
|||||||
@ -40,12 +40,15 @@ final class TestCall
|
|||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly TestSuite $testSuite,
|
private readonly TestSuite $testSuite,
|
||||||
string $filename,
|
private readonly string $filename,
|
||||||
string $description = null,
|
string $description = null,
|
||||||
Closure $closure = null
|
Closure $closure = null
|
||||||
) {
|
) {
|
||||||
$this->testCaseMethod = new TestCaseMethodFactory($filename, $description, $closure);
|
$this->testCaseMethod = new TestCaseMethodFactory($filename, $description, $closure);
|
||||||
|
|
||||||
$this->descriptionLess = $description === null;
|
$this->descriptionLess = $description === null;
|
||||||
|
|
||||||
|
$this->testSuite->beforeEach->get($filename)[0]($this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -167,7 +170,7 @@ final class TestCall
|
|||||||
|
|
||||||
$this->testCaseMethod
|
$this->testCaseMethod
|
||||||
->chains
|
->chains
|
||||||
->addWhen($condition, Backtrace::file(), Backtrace::line(), 'markTestSkipped', [$message]);
|
->addWhen($condition, $this->filename, Backtrace::line(), 'markTestSkipped', [$message]);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
@ -224,7 +227,7 @@ final class TestCall
|
|||||||
public function covers(string ...$classesOrFunctions): self
|
public function covers(string ...$classesOrFunctions): self
|
||||||
{
|
{
|
||||||
foreach ($classesOrFunctions as $classOrFunction) {
|
foreach ($classesOrFunctions as $classOrFunction) {
|
||||||
$isClass = class_exists($classOrFunction);
|
$isClass = class_exists($classOrFunction) || trait_exists($classOrFunction);
|
||||||
$isMethod = function_exists($classOrFunction);
|
$isMethod = function_exists($classOrFunction);
|
||||||
|
|
||||||
if (! $isClass && ! $isMethod) {
|
if (! $isClass && ! $isMethod) {
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '2.5.3';
|
return '2.6.3';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -14,27 +14,34 @@ use Pest\Support\NullClosure;
|
|||||||
final class BeforeEachRepository
|
final class BeforeEachRepository
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @var array<string, Closure>
|
* @var array<string, array{0: Closure, 1: Closure}>
|
||||||
*/
|
*/
|
||||||
private array $state = [];
|
private array $state = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets a before each closure.
|
* Sets a before each closure.
|
||||||
*/
|
*/
|
||||||
public function set(string $filename, Closure $closure): void
|
public function set(string $filename, Closure $beforeEachTestCall, Closure $beforeEachTestCase): void
|
||||||
{
|
{
|
||||||
if (array_key_exists($filename, $this->state)) {
|
if (array_key_exists($filename, $this->state)) {
|
||||||
throw new BeforeEachAlreadyExist($filename);
|
throw new BeforeEachAlreadyExist($filename);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->state[$filename] = $closure;
|
$this->state[$filename] = [$beforeEachTestCall, $beforeEachTestCase];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a before each closure by the given filename.
|
* Gets a before each closure by the given filename.
|
||||||
|
*
|
||||||
|
* @return array{0: Closure, 1: Closure}
|
||||||
*/
|
*/
|
||||||
public function get(string $filename): Closure
|
public function get(string $filename): array
|
||||||
{
|
{
|
||||||
return $this->state[$filename] ?? NullClosure::create();
|
$closures = $this->state[$filename] ?? [];
|
||||||
|
|
||||||
|
return [
|
||||||
|
$closures[0] ?? NullClosure::create(),
|
||||||
|
$closures[1] ?? NullClosure::create(),
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -104,8 +104,6 @@ final class Backtrace
|
|||||||
{
|
{
|
||||||
$trace = debug_backtrace(self::BACKTRACE_OPTIONS)[1];
|
$trace = debug_backtrace(self::BACKTRACE_OPTIONS)[1];
|
||||||
|
|
||||||
assert(array_key_exists('line', $trace));
|
return $trace['line'] ?? 0;
|
||||||
|
|
||||||
return $trace['line'];
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
##teamcity[testSuiteStarted name='Tests/tests/Failure' locationHint='file://tests/.tests/Failure.php' flowId='1234']
|
##teamcity[testSuiteStarted name='Tests/tests/Failure' locationHint='file://tests/.tests/Failure.php' flowId='1234']
|
||||||
##teamcity[testCount count='6' flowId='1234']
|
##teamcity[testCount count='8' flowId='1234']
|
||||||
##teamcity[testStarted name='it can fail with comparison' locationHint='pest_qn://tests/.tests/Failure.php::it can fail with comparison' flowId='1234']
|
##teamcity[testStarted name='it can fail with comparison' locationHint='pest_qn://tests/.tests/Failure.php::it can fail with comparison' flowId='1234']
|
||||||
##teamcity[testFailed name='it can fail with comparison' message='Failed asserting that true matches expected false.' details='at src/Mixins/Expectation.php:343|nat src/Support/ExpectationPipeline.php:75|nat src/Support/ExpectationPipeline.php:79|nat src/Expectation.php:300|nat tests/.tests/Failure.php:6|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' type='comparisonFailure' actual='true' expected='false' flowId='1234']
|
##teamcity[testFailed name='it can fail with comparison' message='Failed asserting that true matches expected false.' details='at src/Mixins/Expectation.php:343|nat src/Support/ExpectationPipeline.php:75|nat src/Support/ExpectationPipeline.php:79|nat src/Expectation.php:300|nat tests/.tests/Failure.php:6|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' type='comparisonFailure' actual='true' expected='false' flowId='1234']
|
||||||
##teamcity[testFinished name='it can fail with comparison' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it can fail with comparison' duration='100000' flowId='1234']
|
||||||
@ -12,14 +12,19 @@
|
|||||||
##teamcity[testStarted name='it can fail' locationHint='pest_qn://tests/.tests/Failure.php::it can fail' flowId='1234']
|
##teamcity[testStarted name='it can fail' locationHint='pest_qn://tests/.tests/Failure.php::it can fail' flowId='1234']
|
||||||
##teamcity[testFailed name='it can fail' message='oh noo' details='at tests/.tests/Failure.php:18|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' flowId='1234']
|
##teamcity[testFailed name='it can fail' message='oh noo' details='at tests/.tests/Failure.php:18|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' flowId='1234']
|
||||||
##teamcity[testFinished name='it can fail' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it can fail' duration='100000' flowId='1234']
|
||||||
|
##teamcity[testStarted name='it throws exception' locationHint='pest_qn://tests/.tests/Failure.php::it throws exception' flowId='1234']
|
||||||
|
##teamcity[testFailed name='it throws exception' message='Exception: test error' details='at tests/.tests/Failure.php:22|nat src/Factories/TestCaseMethodFactory.php:100|nat src/Concerns/Testable.php:302|nat src/Support/ExceptionTrace.php:28|nat src/Concerns/Testable.php:302|nat src/Concerns/Testable.php:221|nat src/Kernel.php:86' flowId='1234']
|
||||||
|
##teamcity[testFinished name='it throws exception' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='it is not done yet' locationHint='pest_qn://tests/.tests/Failure.php::it is not done yet' flowId='1234']
|
##teamcity[testStarted name='it is not done yet' locationHint='pest_qn://tests/.tests/Failure.php::it is not done yet' flowId='1234']
|
||||||
##teamcity[testIgnored name='it is not done yet' message='This test was ignored.' details='' flowId='1234']
|
##teamcity[testIgnored name='it is not done yet' message='This test was ignored.' details='' flowId='1234']
|
||||||
##teamcity[testFinished name='it is not done yet' duration='100000' flowId='1234']
|
##teamcity[testFinished name='it is not done yet' duration='100000' flowId='1234']
|
||||||
##teamcity[testStarted name='build this one.' locationHint='pest_qn://tests/.tests/Failure.php::build this one.' flowId='1234']
|
##teamcity[testStarted name='build this one.' locationHint='pest_qn://tests/.tests/Failure.php::build this one.' flowId='1234']
|
||||||
##teamcity[testIgnored name='build this one.' message='This test was ignored.' details='' flowId='1234']
|
##teamcity[testIgnored name='build this one.' message='This test was ignored.' details='' flowId='1234']
|
||||||
##teamcity[testFinished name='build this one.' duration='100000' flowId='1234']
|
##teamcity[testFinished name='build this one.' duration='100000' flowId='1234']
|
||||||
|
##teamcity[testStarted name='it is passing' locationHint='pest_qn://tests/.tests/Failure.php::it is passing' flowId='1234']
|
||||||
|
##teamcity[testFinished name='it is passing' duration='100000' flowId='1234']
|
||||||
##teamcity[testSuiteFinished name='Tests/tests/Failure' flowId='1234']
|
##teamcity[testSuiteFinished name='Tests/tests/Failure' flowId='1234']
|
||||||
|
|
||||||
[90mTests:[39m [31;1m2 failed[39;22m[90m,[39m[39m [39m[33;1m1 risky[39;22m[90m,[39m[39m [39m[36;1m2 todos[39;22m[90m,[39m[39m [39m[33;1m1 skipped[39;22m[90m (2 assertions)[39m
|
[90mTests:[39m [31;1m3 failed[39;22m[90m,[39m[39m [39m[33;1m1 risky[39;22m[90m,[39m[39m [39m[36;1m2 todos[39;22m[90m,[39m[39m [39m[33;1m1 skipped[39;22m[90m,[39m[39m [39m[32;1m1 passed[39;22m[90m (3 assertions)[39m
|
||||||
[90mDuration:[39m [39m1.00s[39m
|
[90mDuration:[39m [39m1.00s[39m
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.5.3.
|
Pest Testing Framework 2.6.3.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -22,6 +22,22 @@
|
|||||||
✓ it gets executed before each test
|
✓ it gets executed before each test
|
||||||
✓ it gets executed before each test once again
|
✓ it gets executed before each test once again
|
||||||
|
|
||||||
|
PASS Tests\Features\BeforeEachProxiesToTestCallWithExpectations
|
||||||
|
✓ runs 1
|
||||||
|
✓ runs 2
|
||||||
|
✓ runs 3
|
||||||
|
|
||||||
|
WARN Tests\Features\BeforeEachProxiesToTestCallWithSkip
|
||||||
|
- does not run 1
|
||||||
|
- does not run 2
|
||||||
|
- does not run 3
|
||||||
|
|
||||||
|
TODO Tests\Features\BeforeEachProxiesToTestCallWithTodo - 4 todos
|
||||||
|
↓ is marked as todo 1
|
||||||
|
↓ is marked as todo 2
|
||||||
|
↓ is marked as todo 3
|
||||||
|
↓ shouldBeMarkedAsTodo
|
||||||
|
|
||||||
WARN Tests\Features\Coverage
|
WARN Tests\Features\Coverage
|
||||||
✓ it has plugin
|
✓ it has plugin
|
||||||
- it adds coverage if --coverage exist → Coverage is not available
|
- it adds coverage if --coverage exist → Coverage is not available
|
||||||
@ -33,6 +49,7 @@
|
|||||||
✓ it uses the correct PHPUnit attribute for function
|
✓ it uses the correct PHPUnit attribute for function
|
||||||
✓ it removes duplicated attributes
|
✓ it removes duplicated attributes
|
||||||
✓ it guesses if the given argument is a class or function
|
✓ it guesses if the given argument is a class or function
|
||||||
|
✓ it uses the correct PHPUnit attribute for trait
|
||||||
✓ it appends CoversNothing to method attributes
|
✓ it appends CoversNothing to method attributes
|
||||||
✓ it does not append CoversNothing to other methods
|
✓ it does not append CoversNothing to other methods
|
||||||
✓ it throws exception if no class nor method has been found
|
✓ it throws exception if no class nor method has been found
|
||||||
@ -153,7 +170,7 @@
|
|||||||
|
|
||||||
DEPR Tests\Features\Deprecated
|
DEPR Tests\Features\Deprecated
|
||||||
! deprecated → str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated // tests/Features/Deprecated.php:6
|
! deprecated → str_contains(): Passing null to parameter #1 ($haystack) of type string is deprecated // tests/Features/Deprecated.php:6
|
||||||
✓ user deprecated
|
! user deprecated → Since foo 1.0: This is a deprecation description // vendor/symfony/deprecation-contracts/function.php:25
|
||||||
|
|
||||||
PASS Tests\Features\Exceptions
|
PASS Tests\Features\Exceptions
|
||||||
✓ it gives access the the underlying expectException
|
✓ it gives access the the underlying expectException
|
||||||
@ -641,6 +658,7 @@
|
|||||||
✓ failures 5
|
✓ failures 5
|
||||||
✓ failures 6
|
✓ failures 6
|
||||||
✓ failures 7
|
✓ failures 7
|
||||||
|
✓ failures 8
|
||||||
✓ failures with custom message
|
✓ failures with custom message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
✓ closure missing parameter
|
✓ closure missing parameter
|
||||||
@ -1017,4 +1035,4 @@
|
|||||||
PASS Tests\Visual\Version
|
PASS Tests\Visual\Version
|
||||||
✓ visual snapshot of help command output
|
✓ visual snapshot of help command output
|
||||||
|
|
||||||
Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 14 skipped, 711 passed (1719 assertions)
|
Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 17 skipped, 715 passed (1729 assertions)
|
||||||
@ -1,3 +1,9 @@
|
|||||||
|
TODO Tests\Features\BeforeEachProxiesToTestCallWithTodo - 4 todos
|
||||||
|
↓ is marked as todo 1
|
||||||
|
↓ is marked as todo 2
|
||||||
|
↓ is marked as todo 3
|
||||||
|
↓ shouldBeMarkedAsTodo
|
||||||
|
|
||||||
TODO Tests\Features\DatasetsTests - 1 todo
|
TODO Tests\Features\DatasetsTests - 1 todo
|
||||||
↓ forbids to define tests in Datasets dirs and Datasets.php files
|
↓ forbids to define tests in Datasets dirs and Datasets.php files
|
||||||
|
|
||||||
@ -9,4 +15,4 @@
|
|||||||
PASS Tests\CustomTestCase\ExecutedTest
|
PASS Tests\CustomTestCase\ExecutedTest
|
||||||
✓ that gets executed
|
✓ that gets executed
|
||||||
|
|
||||||
Tests: 4 todos, 1 passed (1 assertions)
|
Tests: 8 todos, 1 passed (1 assertions)
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.5.3.
|
Pest Testing Framework 2.6.3.
|
||||||
|
|
||||||
|
|||||||
@ -18,9 +18,17 @@ it('can fail', function () {
|
|||||||
$this->fail("oh noo");
|
$this->fail("oh noo");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('throws exception', function () {
|
||||||
|
throw new Exception('test error');
|
||||||
|
});
|
||||||
|
|
||||||
it('is not done yet', function () {
|
it('is not done yet', function () {
|
||||||
|
|
||||||
})->todo();
|
})->todo();
|
||||||
|
|
||||||
todo("build this one.");
|
todo("build this one.");
|
||||||
|
|
||||||
|
it('is passing', function () {
|
||||||
|
expect(true)->toEqual(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
beforeEach()->expect(true)->toBeTrue();
|
||||||
|
|
||||||
|
test('runs 1', function () {
|
||||||
|
// This test did performs assertions...
|
||||||
|
});
|
||||||
|
|
||||||
|
test('runs 2', function () {
|
||||||
|
// This test did performs assertions...
|
||||||
|
});
|
||||||
|
|
||||||
|
test('runs 3', function () {
|
||||||
|
// This test did performs assertions...
|
||||||
|
});
|
||||||
15
tests/Features/BeforeEachProxiesToTestCallWithSkip.php
Normal file
15
tests/Features/BeforeEachProxiesToTestCallWithSkip.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
beforeEach()->skip();
|
||||||
|
|
||||||
|
test('does not run 1', function () {
|
||||||
|
$this->fail('This test should not run');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('does not run 2', function () {
|
||||||
|
$this->fail('This test should not run');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('does not run 3', function () {
|
||||||
|
$this->fail('This test should not run');
|
||||||
|
});
|
||||||
15
tests/Features/BeforeEachProxiesToTestCallWithTodo.php
Normal file
15
tests/Features/BeforeEachProxiesToTestCallWithTodo.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
beforeEach()->todo();
|
||||||
|
|
||||||
|
test('is marked as todo 1', function () {
|
||||||
|
$this->fail('This test should not run');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('is marked as todo 2', function () {
|
||||||
|
$this->fail('This test should not run');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('is marked as todo 3');
|
||||||
|
|
||||||
|
test()->shouldBeMarkedAsTodo();
|
||||||
@ -6,6 +6,7 @@ use PHPUnit\Framework\Attributes\CoversClass;
|
|||||||
use Tests\Fixtures\Covers\CoversClass1;
|
use Tests\Fixtures\Covers\CoversClass1;
|
||||||
use Tests\Fixtures\Covers\CoversClass2;
|
use Tests\Fixtures\Covers\CoversClass2;
|
||||||
use Tests\Fixtures\Covers\CoversClass3;
|
use Tests\Fixtures\Covers\CoversClass3;
|
||||||
|
use Tests\Fixtures\Covers\CoversTrait;
|
||||||
|
|
||||||
$runCounter = 0;
|
$runCounter = 0;
|
||||||
|
|
||||||
@ -43,6 +44,13 @@ it('guesses if the given argument is a class or function', function () {
|
|||||||
expect($attributes[3]->getArguments()[0])->toBe(CoversClass3::class);
|
expect($attributes[3]->getArguments()[0])->toBe(CoversClass3::class);
|
||||||
})->covers(CoversClass3::class, 'testCoversFunction');
|
})->covers(CoversClass3::class, 'testCoversFunction');
|
||||||
|
|
||||||
|
it('uses the correct PHPUnit attribute for trait', function () {
|
||||||
|
$attributes = (new ReflectionClass($this))->getAttributes();
|
||||||
|
|
||||||
|
expect($attributes[4]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
|
||||||
|
expect($attributes[4]->getArguments()[0])->toBe('Tests\Fixtures\Covers\CoversTrait');
|
||||||
|
})->coversClass(CoversTrait::class);
|
||||||
|
|
||||||
it('appends CoversNothing to method attributes', function () {
|
it('appends CoversNothing to method attributes', function () {
|
||||||
$phpDoc = (new ReflectionClass($this))->getMethod($this->name());
|
$phpDoc = (new ReflectionClass($this))->getMethod($this->name());
|
||||||
|
|
||||||
|
|||||||
@ -95,7 +95,7 @@ it('can use the scoped method to lock into the given level for expectations', fu
|
|||||||
->attributes()->scoped(fn ($attributes) => $attributes
|
->attributes()->scoped(fn ($attributes) => $attributes
|
||||||
->name->toBe('Has Methods')
|
->name->toBe('Has Methods')
|
||||||
->quantity->toBe(20)
|
->quantity->toBe(20)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
use PHPUnit\Framework\ExpectationFailedException;
|
use PHPUnit\Framework\ExpectationFailedException;
|
||||||
|
|
||||||
|
class CustomException extends Exception
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
test('passes', function () {
|
test('passes', function () {
|
||||||
expect(function () {
|
expect(function () {
|
||||||
throw new RuntimeException();
|
throw new RuntimeException();
|
||||||
@ -33,6 +37,9 @@ test('passes', function () {
|
|||||||
throw new RuntimeException('actual message');
|
throw new RuntimeException('actual message');
|
||||||
})->toThrow(function (RuntimeException $e) {
|
})->toThrow(function (RuntimeException $e) {
|
||||||
}, 'actual message');
|
}, 'actual message');
|
||||||
|
expect(function () {
|
||||||
|
throw new CustomException('foo');
|
||||||
|
})->toThrow(new CustomException('foo'));
|
||||||
});
|
});
|
||||||
|
|
||||||
test('failures 1', function () {
|
test('failures 1', function () {
|
||||||
@ -79,6 +86,12 @@ test('failures 7', function () {
|
|||||||
})->toThrow(RuntimeException::class, 'expected message');
|
})->toThrow(RuntimeException::class, 'expected message');
|
||||||
})->throws(ExpectationFailedException::class);
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failures 8', function () {
|
||||||
|
expect(function () {
|
||||||
|
throw new CustomException('actual message');
|
||||||
|
})->toThrow(new CustomException('expected message'));
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
test('failures with custom message', function () {
|
test('failures with custom message', function () {
|
||||||
expect(function () {
|
expect(function () {
|
||||||
throw new RuntimeException('actual message');
|
throw new RuntimeException('actual message');
|
||||||
|
|||||||
7
tests/Fixtures/Covers/CoversTrait.php
Normal file
7
tests/Fixtures/Covers/CoversTrait.php
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Fixtures\Covers;
|
||||||
|
|
||||||
|
trait CoversTrait
|
||||||
|
{
|
||||||
|
}
|
||||||
@ -18,7 +18,7 @@ $run = function () {
|
|||||||
|
|
||||||
test('parallel', function () use ($run) {
|
test('parallel', function () use ($run) {
|
||||||
expect($run('--exclude-group=integration'))
|
expect($run('--exclude-group=integration'))
|
||||||
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 11 skipped, 699 passed (1704 assertions)')
|
->toContain('Tests: 1 deprecated, 3 warnings, 4 incomplete, 1 notice, 8 todos, 14 skipped, 704 passed (1714 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
@ -11,7 +11,9 @@ $run = function (string $target, bool $parallel) {
|
|||||||
|
|
||||||
expect($process->getExitCode())->toBe(0);
|
expect($process->getExitCode())->toBe(0);
|
||||||
|
|
||||||
return preg_replace('#\\x1b[[][^A-Za-z]*[A-Za-z]#', '', $process->getOutput());
|
$outputContent = preg_replace('#\\x1b[[][^A-Za-z]*[A-Za-z]#', '', $process->getOutput());
|
||||||
|
|
||||||
|
return $outputContent;
|
||||||
};
|
};
|
||||||
|
|
||||||
$snapshot = function ($name) {
|
$snapshot = function ($name) {
|
||||||
|
|||||||
Reference in New Issue
Block a user