@@ -316,7 +316,7 @@ public function test_unlink_will_pass_formula_to_run_as_user()
316
316
$ this ->assertSame ('Some output ' , resolve (Brew::class)->unlink ('aformula ' ));
317
317
}
318
318
319
- public function test_getRunningServices_will_throw_exception_on_failure ()
319
+ public function test_get_running_services_will_throw_exception_on_failure ()
320
320
{
321
321
$ this ->expectException (DomainException::class);
322
322
@@ -331,7 +331,7 @@ public function test_getRunningServices_will_throw_exception_on_failure()
331
331
resolve (Brew::class)->getRunningServices (true );
332
332
}
333
333
334
- public function test_getRunningServices_will_pass_to_brew_services_list_and_return_array ()
334
+ public function test_get_running_services_will_pass_to_brew_services_list_and_return_array ()
335
335
{
336
336
$ cli = Mockery::mock (CommandLine::class);
337
337
$ cli ->shouldReceive ('runAsUser ' )->once ()->withArgs ([
@@ -349,7 +349,7 @@ public function test_getRunningServices_will_pass_to_brew_services_list_and_retu
349
349
], array_values ($ result ->all ()));
350
350
}
351
351
352
- public function test_getAllRunningServices_will_return_both_root_and_user_services ()
352
+ public function test_get_all_running_services_will_return_both_root_and_user_services ()
353
353
{
354
354
$ cli = Mockery::mock (CommandLine::class);
355
355
$ cli ->shouldReceive ('run ' )->once ()->withArgs ([
@@ -369,7 +369,7 @@ public function test_getAllRunningServices_will_return_both_root_and_user_servic
369
369
], array_values ($ result ->all ()));
370
370
}
371
371
372
- public function test_getAllRunningServices_will_return_unique_services ()
372
+ public function test_get_all_running_services_will_return_unique_services ()
373
373
{
374
374
$ cli = Mockery::mock (CommandLine::class);
375
375
$ cli ->shouldReceive ('run ' )->once ()->andReturn ('service1 ' .PHP_EOL .'service2 ' .PHP_EOL .'service1 ' .PHP_EOL );
0 commit comments