We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2426705 commit b8570b6Copy full SHA for b8570b6
1 file changed
tests/Terremoth/AsyncTest/ProcessTest.php
@@ -11,6 +11,7 @@
11
12
/**
13
* @covers \Terremoth\Async\Process
14
+ * @covers \Terremoth\Async\PhpFile
15
*/
16
class ProcessTest extends TestCase
17
{
@@ -74,18 +75,6 @@ public function testSendActuallyWritesSerializedClosureToShmop(): void
74
75
// shmop_close($shmop); // deprecated
76
}
77
- public function testSendThrowsWhenShmopCannotBeCreated(): void
78
- {
79
- $badKey = -1; // impossible key
80
-
81
- $process = new Process($badKey);
82
83
- $this->expectException(Exception::class);
84
85
- $process->send(function () {
86
- });
87
- }
88
89
90
* @throws RandomException|Exception
91
0 commit comments