-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
feedb5f
commit a61a38a
Showing
6 changed files
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
/** | ||
* Tests for the QueuedJobsAdmin ModelAdmin clas | ||
* | ||
* @coversDefaultClass \Symbiote\QueuedJobs\Controllers\QueuedJobsAdmin | ||
* @package queuedjobs | ||
* @author Robbie Averill <[email protected]> | ||
*/ | ||
|
@@ -73,8 +72,6 @@ public function testConstructorParamsShouldBeATextarea() | |
/** | ||
* Ensure that when a multi-line value is entered for JobParams, it is split by new line and each value | ||
* passed to the constructor of the JobType that is created by the reflection in createjob() | ||
* | ||
* @covers ::createjob | ||
*/ | ||
public function testCreateJobWithConstructorParams() | ||
{ | ||
|
@@ -95,9 +92,6 @@ public function testCreateJobWithConstructorParams() | |
$this->admin->createjob($form->getData(), $form); | ||
} | ||
|
||
/** | ||
* @covers ::createjob | ||
*/ | ||
public function testCreateJobWithStartAfterOption() | ||
{ | ||
$startTimeAfter = DBDatetime::now(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
use Symbiote\QueuedJobs\Tests\QueuedJobsTest\TestExceptingJob; | ||
use Symbiote\QueuedJobs\Tests\QueuedJobsTest\TestQJService; | ||
use Symbiote\QueuedJobs\Tests\QueuedJobsTest\TestQueuedJob; | ||
use PHPUnit\Framework\Attributes\DataProvider; | ||
|
||
/** | ||
* @author Marcus Nyeholt <[email protected]> | ||
|
@@ -745,8 +746,8 @@ public function testGrabMutex(): void | |
* @param array $jobs | ||
* @param int $expected | ||
* @throws ValidationException | ||
* @dataProvider jobsProvider | ||
*/ | ||
#[DataProvider('jobsProvider')] | ||
public function testBrokenJobNotification(array $jobs, int $expected): void | ||
{ | ||
/** @var QueuedJobDescriptor $descriptor */ | ||
|
@@ -775,8 +776,8 @@ public function testBrokenJobNotification(array $jobs, int $expected): void | |
* @param int $expected | ||
* @throws ValidationException | ||
* @throws Exception | ||
* @dataProvider healthCheckProvider | ||
*/ | ||
#[DataProvider('healthCheckProvider')] | ||
public function testExcludeTasksFromHealthCheck(string $jobClass, int $expected): void | ||
{ | ||
$service = $this->getService(); | ||
|
@@ -801,7 +802,7 @@ public function testExcludeTasksFromHealthCheck(string $jobClass, int $expected) | |
); | ||
} | ||
|
||
public function jobsProvider(): array | ||
public static function jobsProvider(): array | ||
{ | ||
return [ | ||
[ | ||
|
@@ -823,7 +824,7 @@ public function jobsProvider(): array | |
]; | ||
} | ||
|
||
public function healthCheckProvider(): array | ||
public static function healthCheckProvider(): array | ||
{ | ||
return [ | ||
[TestExceptingJob::class, 1], | ||
|