88
99class RappasoftFrontendAssetsTest extends TestCase
1010{
11- public function test_JsResponseSetupCacheEnabled (): array
11+ public function test_js_response_setup_cache_enabled (): array
1212 {
1313 config ()->set ('livewire-tables.cache_assets ' , true );
1414 $ lastModified = \Carbon \Carbon::now ()->timestamp ;
@@ -22,7 +22,7 @@ public function test_JsResponseSetupCacheEnabled(): array
2222 return ['lastModified ' => $ lastModified , 'responseHeaders ' => $ response ->headers ->all ()];
2323 }
2424
25- public function test_JsResponseSetupCacheDisabled (): array
25+ public function test_js_response_setup_cache_disabled (): array
2626 {
2727 config ()->set ('livewire-tables.cache_assets ' , false );
2828 $ date = date_create ();
@@ -36,7 +36,7 @@ public function test_JsResponseSetupCacheDisabled(): array
3636 return ['lastModified ' => date_timestamp_get ($ date ), 'responseHeaders ' => $ response ->headers ->all ()];
3737 }
3838
39- public function test_CssResponseSetupCacheEnabled (): array
39+ public function test_css_response_setup_cache_enabled (): array
4040 {
4141 config ()->set ('livewire-tables.cache_assets ' , true );
4242 $ date = date_create ();
@@ -50,7 +50,7 @@ public function test_CssResponseSetupCacheEnabled(): array
5050 return ['lastModified ' => date_timestamp_get ($ date ), 'responseHeaders ' => $ response ->headers ->all ()];
5151 }
5252
53- public function test_CssResponseSetupCacheDisabled (): array
53+ public function test_css_response_setup_cache_disabled (): array
5454 {
5555 config ()->set ('livewire-tables.cache_assets ' , false );
5656
@@ -66,7 +66,7 @@ public function test_CssResponseSetupCacheDisabled(): array
6666 return ['lastModified ' => date_timestamp_get ($ date ), 'responseHeaders ' => $ response ->headers ->all ()];
6767 }
6868
69- public function test_ThirdPartyCssResponseSetupCacheEnabled (): array
69+ public function test_third_party_css_response_setup_cache_enabled (): array
7070 {
7171 config ()->set ('livewire-tables.cache_assets ' , true );
7272
@@ -82,7 +82,7 @@ public function test_ThirdPartyCssResponseSetupCacheEnabled(): array
8282 return ['lastModified ' => date_timestamp_get ($ date ), 'responseHeaders ' => $ response ->headers ->all ()];
8383 }
8484
85- public function test_ThirdPartyCssResponseSetupCacheDisabled (): array
85+ public function test_third_party_css_response_setup_cache_disabled (): array
8686 {
8787 config ()->set ('livewire-tables.cache_assets ' , false );
8888
@@ -98,7 +98,7 @@ public function test_ThirdPartyCssResponseSetupCacheDisabled(): array
9898 return ['lastModified ' => date_timestamp_get ($ date ), 'responseHeaders ' => $ response ->headers ->all ()];
9999 }
100100
101- public function test_ThirdPartyJsResponseSetupCacheEnabled (): array
101+ public function test_third_party_js_response_setup_cache_enabled (): array
102102 {
103103 config ()->set ('livewire-tables.cache_assets ' , true );
104104 $ lastModified = \Carbon \Carbon::now ()->timestamp ;
@@ -112,7 +112,7 @@ public function test_ThirdPartyJsResponseSetupCacheEnabled(): array
112112 return ['lastModified ' => $ lastModified , 'responseHeaders ' => $ response ->headers ->all ()];
113113 }
114114
115- public function test_ThirdPartyJsResponseSetupCacheDisabled (): array
115+ public function test_third_party_js_response_setup_cache_disabled (): array
116116 {
117117 config ()->set ('livewire-tables.cache_assets ' , false );
118118 $ date = date_create ();
@@ -148,7 +148,7 @@ public function test_scripts()
148148 $ this ->assertTrue ($ assets ->hasRenderedRappsoftTableScripts );
149149 }
150150
151- public function test_thirdPartystyles ()
151+ public function test_third_partystyles ()
152152 {
153153 $ assets = app (RappasoftFrontendAssets::class);
154154
@@ -159,7 +159,7 @@ public function test_thirdPartystyles()
159159 $ this ->assertTrue ($ assets ->hasRenderedRappsoftTableThirdPartyStyles );
160160 }
161161
162- public function test_thirdPartyscripts ()
162+ public function test_third_partyscripts ()
163163 {
164164 $ assets = app (RappasoftFrontendAssets::class);
165165
0 commit comments