File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
class LogEnhancerTest extends TestCase
12
12
{
13
13
/** @test */
14
- public function it_adds_all_processor_details_to_the_logs ()
14
+ public function it_adds_respective_processors_to_the_log_handler ()
15
15
{
16
16
config (['laravel_log_enhancer.log_memory_usage ' => true ]);
17
17
config (['laravel_log_enhancer.log_request_details ' => true ]);
@@ -26,7 +26,7 @@ public function it_adds_all_processor_details_to_the_logs()
26
26
}
27
27
28
28
/** @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 ()
30
30
{
31
31
config (['laravel_log_enhancer.log_memory_usage ' => false ]);
32
32
config (['laravel_log_enhancer.log_request_details ' => false ]);
@@ -42,7 +42,7 @@ public function it_will_not_add_any_processor_to_the_logs()
42
42
}
43
43
44
44
/** @test */
45
- public function it_skips_input_details_as_per_the_configuration ()
45
+ public function it_does_not_add_extra_input_details_to_logs ()
46
46
{
47
47
$ record = [];
48
48
@@ -55,7 +55,7 @@ public function it_skips_input_details_as_per_the_configuration()
55
55
}
56
56
57
57
/** @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 ()
59
59
{
60
60
$ record = [];
61
61
@@ -77,7 +77,7 @@ public function it_adds_other_details_as_per_the_configuration()
77
77
}
78
78
79
79
/** @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 ()
81
81
{
82
82
$ record = [];
83
83
You can’t perform that action at this time.
0 commit comments