Skip to content

Commit 4f59100

Browse files
authored
Update LogEnhancerTest.php
1 parent a847205 commit 4f59100

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/LogEnhancerTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class LogEnhancerTest extends TestCase
1212
{
1313
/** @test */
14-
public function it_adds_all_processor_details_to_the_logs()
14+
public function it_adds_respective_processors_to_the_log_handler()
1515
{
1616
config(['laravel_log_enhancer.log_memory_usage' => true]);
1717
config(['laravel_log_enhancer.log_request_details' => true]);
@@ -26,7 +26,7 @@ public function it_adds_all_processor_details_to_the_logs()
2626
}
2727

2828
/** @test */
29-
public function it_will_not_add_any_processor_to_the_logs()
29+
public function it_does_not_add_processors_to_the_log_handler_when_not_configured()
3030
{
3131
config(['laravel_log_enhancer.log_memory_usage' => false]);
3232
config(['laravel_log_enhancer.log_request_details' => false]);
@@ -42,7 +42,7 @@ public function it_will_not_add_any_processor_to_the_logs()
4242
}
4343

4444
/** @test */
45-
public function it_skips_input_details_as_per_the_configuration()
45+
public function it_does_not_add_extra_input_details_to_logs()
4646
{
4747
$record = [];
4848

@@ -55,7 +55,7 @@ public function it_skips_input_details_as_per_the_configuration()
5555
}
5656

5757
/** @test */
58-
public function it_adds_other_details_as_per_the_configuration()
58+
public function it_adds_other_details_to_the_logs_as_per_the_configuration()
5959
{
6060
$record = [];
6161

@@ -77,7 +77,7 @@ public function it_adds_other_details_as_per_the_configuration()
7777
}
7878

7979
/** @test */
80-
public function it_will_not_add_other_details_as_per_the_configuration()
80+
public function it_does_not_add_other_details_to_the_logs_as_per_the_configuration()
8181
{
8282
$record = [];
8383

0 commit comments

Comments
 (0)