-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from roadrunner-php/feature/improve-informer-w…
…orkers Adding `getWorkers` method
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Spiral\RoadRunner\Tests\Worker\Unit\Informer; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Spiral\RoadRunner\Informer\Worker; | ||
use Spiral\RoadRunner\Informer\Workers; | ||
|
||
final class WorkersTest extends TestCase | ||
{ | ||
public function testGetWorkers(): void | ||
{ | ||
$workers = [ | ||
new Worker(1, 1, 1, 1, 1, 1.0, 'test1', 'test1'), | ||
new Worker(2, 2, 2, 2, 2, 2.0, 'test2', 'test2'), | ||
]; | ||
|
||
$this->assertEquals([], (new Workers())->getWorkers()); | ||
$this->assertEquals($workers, (new Workers($workers))->getWorkers()); | ||
} | ||
} |