mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
fix: undefined property
This commit is contained in:
@ -470,7 +470,7 @@ trait Testable
|
|||||||
*/
|
*/
|
||||||
public static function getLatestPrintableTestCaseMethodName(): string
|
public static function getLatestPrintableTestCaseMethodName(): string
|
||||||
{
|
{
|
||||||
return self::$__latestDescription;
|
return self::$__latestDescription ?? '';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '4.0.0-alpha.1';
|
return '4.0.0-alpha.2';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 4.0.0-alpha.1.
|
Pest Testing Framework 4.0.0-alpha.2.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
@ -72,6 +72,7 @@
|
|||||||
--fail-on-notice Signal failure using shell exit code when a notice was triggered
|
--fail-on-notice Signal failure using shell exit code when a notice was triggered
|
||||||
--fail-on-skipped Signal failure using shell exit code when a test was skipped
|
--fail-on-skipped Signal failure using shell exit code when a test was skipped
|
||||||
--fail-on-incomplete Signal failure using shell exit code when a test was marked incomplete
|
--fail-on-incomplete Signal failure using shell exit code when a test was marked incomplete
|
||||||
|
--fail-on-all-issues Signal failure using shell exit code when an issue is triggered
|
||||||
--cache-result ............................ Write test results to cache file
|
--cache-result ............................ Write test results to cache file
|
||||||
--do-not-cache-result .............. Do not write test results to cache file
|
--do-not-cache-result .............. Do not write test results to cache file
|
||||||
--order-by [order] Run tests in order: default|defects|depends|duration|no-depends|random|reverse|size
|
--order-by [order] Run tests in order: default|defects|depends|duration|no-depends|random|reverse|size
|
||||||
@ -93,6 +94,7 @@
|
|||||||
--display-errors ............. Display details for errors triggered by tests
|
--display-errors ............. Display details for errors triggered by tests
|
||||||
--display-notices ........... Display details for notices triggered by tests
|
--display-notices ........... Display details for notices triggered by tests
|
||||||
--display-warnings ......... Display details for warnings triggered by tests
|
--display-warnings ......... Display details for warnings triggered by tests
|
||||||
|
--display-all-issues ..... Display details for all issues that are triggered
|
||||||
--reverse-list .............................. Print defects in reverse order
|
--reverse-list .............................. Print defects in reverse order
|
||||||
--teamcity . Replace default progress and result output with TeamCity format
|
--teamcity . Replace default progress and result output with TeamCity format
|
||||||
--testdox ................ Replace default result output with TestDox format
|
--testdox ................ Replace default result output with TestDox format
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 4.0.0-alpha.1.
|
Pest Testing Framework 4.0.0-alpha.2.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user