@@ -40,17 +40,17 @@ protected function tearDown(): void
4040 parent ::tearDown ();
4141 }
4242
43- public function test_size_does_not_throw_exception_on_unknown_queue (): void
43+ public function testSizeDoesNotThrowExceptionOnUnknownQueue (): void
4444 {
4545 $ this ->assertEmpty (0 , Queue::size (Str::random ()));
4646 }
4747
48- public function test_pop_nothing (): void
48+ public function testPopNothing (): void
4949 {
5050 $ this ->assertNull (Queue::pop ('foo ' ));
5151 }
5252
53- public function test_push_raw (): void
53+ public function testPushRaw (): void
5454 {
5555 Queue::pushRaw ($ payload = Str::random ());
5656
@@ -68,7 +68,7 @@ public function test_push_raw(): void
6868 $ this ->assertSame (0 , Queue::size ());
6969 }
7070
71- public function test_push (): void
71+ public function testPush (): void
7272 {
7373 Queue::push (new TestJob );
7474
@@ -95,7 +95,7 @@ public function test_push(): void
9595 $ this ->assertSame (0 , Queue::size ());
9696 }
9797
98- public function test_push_after_commit (): void
98+ public function testPushAfterCommit (): void
9999 {
100100 $ transaction = new DatabaseTransactionsManager ;
101101
@@ -122,7 +122,7 @@ public function test_push_after_commit(): void
122122 $ this ->assertSame (0 , Queue::size ());
123123 }
124124
125- public function test_later_raw (): void
125+ public function testLaterRaw (): void
126126 {
127127 $ payload = Str::random ();
128128 $ data = [Str::random () => Str::random ()];
@@ -152,7 +152,7 @@ public function test_later_raw(): void
152152 $ this ->assertSame (0 , Queue::size ());
153153 }
154154
155- public function test_later (): void
155+ public function testLater (): void
156156 {
157157 Queue::later (3 , new TestJob );
158158
@@ -179,7 +179,7 @@ public function test_later(): void
179179 $ this ->assertSame (0 , Queue::size ());
180180 }
181181
182- public function test_bulk (): void
182+ public function testBulk (): void
183183 {
184184 $ count = 100 ;
185185 $ jobs = [];
@@ -195,7 +195,7 @@ public function test_bulk(): void
195195 $ this ->assertSame ($ count , Queue::size ());
196196 }
197197
198- public function test_push_encrypted (): void
198+ public function testPushEncrypted (): void
199199 {
200200 Queue::push (new TestEncryptedJob );
201201
@@ -222,7 +222,7 @@ public function test_push_encrypted(): void
222222 $ this ->assertSame (0 , Queue::size ());
223223 }
224224
225- public function test_push_encrypted_after_commit (): void
225+ public function testPushEncryptedAfterCommit (): void
226226 {
227227 $ transaction = new DatabaseTransactionsManager ;
228228
@@ -249,7 +249,7 @@ public function test_push_encrypted_after_commit(): void
249249 $ this ->assertSame (0 , Queue::size ());
250250 }
251251
252- public function test_encrypted_later (): void
252+ public function testEncryptedLater (): void
253253 {
254254 Queue::later (3 , new TestEncryptedJob );
255255
@@ -276,7 +276,7 @@ public function test_encrypted_later(): void
276276 $ this ->assertSame (0 , Queue::size ());
277277 }
278278
279- public function test_encrypted_bulk (): void
279+ public function testEncryptedBulk (): void
280280 {
281281 $ count = 100 ;
282282 $ jobs = [];
@@ -292,7 +292,7 @@ public function test_encrypted_bulk(): void
292292 $ this ->assertSame ($ count , Queue::size ());
293293 }
294294
295- public function test_release_raw (): void
295+ public function testReleaseRaw (): void
296296 {
297297 Queue::pushRaw ($ payload = Str::random ());
298298
@@ -318,7 +318,7 @@ public function test_release_raw(): void
318318 $ this ->assertSame (0 , Queue::size ());
319319 }
320320
321- public function test_release (): void
321+ public function testRelease (): void
322322 {
323323 Queue::push (new TestJob );
324324
@@ -344,7 +344,7 @@ public function test_release(): void
344344 $ this ->assertSame (0 , Queue::size ());
345345 }
346346
347- public function test_release_with_delay_raw (): void
347+ public function testReleaseWithDelayRaw (): void
348348 {
349349 Queue::pushRaw ($ payload = Str::random ());
350350
@@ -375,7 +375,7 @@ public function test_release_with_delay_raw(): void
375375 $ this ->assertSame (0 , Queue::size ());
376376 }
377377
378- public function test_release_in_the_past (): void
378+ public function testReleaseInThePast (): void
379379 {
380380 Queue::push (new TestJob );
381381
@@ -390,7 +390,7 @@ public function test_release_in_the_past(): void
390390 $ this ->assertSame (0 , Queue::size ());
391391 }
392392
393- public function test_release_and_release_with_delay_attempts (): void
393+ public function testReleaseAndReleaseWithDelayAttempts (): void
394394 {
395395 Queue::push (new TestJob );
396396
@@ -417,7 +417,7 @@ public function test_release_and_release_with_delay_attempts(): void
417417 $ this ->assertSame (0 , Queue::size ());
418418 }
419419
420- public function test_delete (): void
420+ public function testDelete (): void
421421 {
422422 Queue::push (new TestJob );
423423
@@ -431,7 +431,7 @@ public function test_delete(): void
431431 $ this ->assertNull (Queue::pop ());
432432 }
433433
434- public function test_failed (): void
434+ public function testFailed (): void
435435 {
436436 Queue::push (new TestJob );
437437
0 commit comments