From 93db2dadcda89fe3da2309e3be90560a674c7b2d Mon Sep 17 00:00:00 2001 From: Joe <104938042+lrljoe@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:49:51 +0000 Subject: [PATCH] Update Test Names --- .../RappasoftFrontendAssetsTest.php | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tests/Unit/Mechanisms/RappasoftFrontendAssetsTest.php b/tests/Unit/Mechanisms/RappasoftFrontendAssetsTest.php index 1ef940c26..3d354e1e4 100644 --- a/tests/Unit/Mechanisms/RappasoftFrontendAssetsTest.php +++ b/tests/Unit/Mechanisms/RappasoftFrontendAssetsTest.php @@ -170,97 +170,97 @@ public function test_third_partyscripts() $this->assertTrue($assets->hasRenderedRappsoftTableThirdPartyScripts); } - #[Depends('test_JsResponseSetupCacheEnabled')] + #[Depends('test_js_response_setup_cache_enabled')] public function test_check_pretend_response_is_js_returns_correct_cache_control_cache_enabled(array $jsResponseSetupCacheEnabled) { $this->assertSame('max-age=86400, public', $jsResponseSetupCacheEnabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_JsResponseSetupCacheEnabled')] + #[Depends('test_js_response_setup_cache_enabled')] public function test_check_pretend_response_is_js_returns_correct_content_type_cache_enabled(array $jsResponseSetupCacheEnabled) { $this->assertSame('application/javascript; charset=utf-8', $jsResponseSetupCacheEnabled['responseHeaders']['content-type'][0]); } - #[Depends('test_JsResponseSetupCacheDisabled')] + #[Depends('test_js_response_setup_cache_disabled')] public function test_check_pretend_response_is_js_returns_correct_cache_control_cache_disabled(array $jsResponseSetupCacheDisabled) { $this->assertSame('max-age=1, public', $jsResponseSetupCacheDisabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_JsResponseSetupCacheDisabled')] + #[Depends('test_js_response_setup_cache_disabled')] public function test_check_pretend_response_is_js_returns_correct_content_type_cache_disabled(array $jsResponseSetupCacheDisabled) { $this->assertSame('application/javascript; charset=utf-8', $jsResponseSetupCacheDisabled['responseHeaders']['content-type'][0]); } - #[Depends('test_CssResponseSetupCacheEnabled')] + #[Depends('test_css_response_setup_cache_enabled')] public function test_check_pretend_response_is_css_returns_correct_cache_control_caching_enabled(array $cssResponseSetupCacheEnabled) { $this->assertSame('max-age=86400, public', $cssResponseSetupCacheEnabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_CssResponseSetupCacheEnabled')] + #[Depends('test_css_response_setup_cache_enabled')] public function test_check_pretend_response_is_css_returns_correct_content_type_caching_enabled(array $cssResponseSetupCacheEnabled) { $this->assertSame('text/css; charset=utf-8', $cssResponseSetupCacheEnabled['responseHeaders']['content-type'][0]); } - #[Depends('test_CssResponseSetupCacheDisabled')] + #[Depends('test_css_response_setup_cache_disabled')] public function test_check_pretend_response_is_css_returns_correct_cache_control_caching_disabled(array $cssResponseSetupCacheDisabled) { $this->assertSame('max-age=1, public', $cssResponseSetupCacheDisabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_CssResponseSetupCacheDisabled')] + #[Depends('test_css_response_setup_cache_disabled')] public function test_check_pretend_response_is_css_returns_correct_content_type_caching_disabled(array $cssResponseSetupCacheDisabled) { $this->assertSame('text/css; charset=utf-8', $cssResponseSetupCacheDisabled['responseHeaders']['content-type'][0]); } - #[Depends('test_ThirdPartyCssResponseSetupCacheEnabled')] + #[Depends('test_third_party_css_response_setup_cache_enabled')] public function test_tp_check_pretend_response_is_css_returns_correct_cache_control_caching_enabled(array $thirdPartyCssResponseSetupCacheEnabled) { $this->assertSame('max-age=86400, public', $thirdPartyCssResponseSetupCacheEnabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_ThirdPartyCssResponseSetupCacheEnabled')] + #[Depends('test_third_party_css_response_setup_cache_enabled')] public function test_tp_check_pretend_response_is_css_returns_correct_content_type_caching_enabled(array $thirdPartyCssResponseSetupCacheEnabled) { $this->assertSame('text/css; charset=utf-8', $thirdPartyCssResponseSetupCacheEnabled['responseHeaders']['content-type'][0]); } - #[Depends('test_ThirdPartyCssResponseSetupCacheDisabled')] + #[Depends('test_third_party_css_response_setup_cache_disabled')] public function test_tp_check_pretend_response_is_css_returns_correct_cache_control_caching_disabled(array $thirdPartyCssResponseSetupCacheDisabled) { $this->assertSame('max-age=1, public', $thirdPartyCssResponseSetupCacheDisabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_ThirdPartyCssResponseSetupCacheDisabled')] + #[Depends('test_third_party_css_response_setup_cache_disabled')] public function test_tp_check_pretend_response_is_css_returns_correct_content_type_caching_disabled(array $thirdPartyCssResponseSetupCacheDisabled) { $this->assertSame('text/css; charset=utf-8', $thirdPartyCssResponseSetupCacheDisabled['responseHeaders']['content-type'][0]); } - #[Depends('test_ThirdPartyJsResponseSetupCacheEnabled')] + #[Depends('test_third_party_js_response_setup_cache_enabled')] public function test_tp_check_pretend_response_is_js_returns_correct_cache_control_cache_enabled(array $thirdPartyJsResponseSetupCacheEnabled) { $this->assertSame('max-age=86400, public', $thirdPartyJsResponseSetupCacheEnabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_ThirdPartyJsResponseSetupCacheEnabled')] + #[Depends('test_third_party_js_response_setup_cache_enabled')] public function test_tp_check_pretend_response_is_js_returns_correct_content_type_cache_enabled(array $thirdPartyJsResponseSetupCacheEnabled) { $this->assertSame('application/javascript; charset=utf-8', $thirdPartyJsResponseSetupCacheEnabled['responseHeaders']['content-type'][0]); } - #[Depends('test_ThirdPartyJsResponseSetupCacheDisabled')] + #[Depends('test_third_party_js_response_setup_cache_disabled')] public function test_tp_check_pretend_response_is_js_returns_correct_cache_control_cache_disabled(array $thirdPartyJsResponseSetupCacheDisabled) { $this->assertSame('max-age=1, public', $thirdPartyJsResponseSetupCacheDisabled['responseHeaders']['cache-control'][0]); } - #[Depends('test_ThirdPartyJsResponseSetupCacheDisabled')] + #[Depends('test_third_party_js_response_setup_cache_disabled')] public function test_tp_check_pretend_response_is_js_returns_correct_content_type_cache_disabled(array $thirdPartyJsResponseSetupCacheDisabled) { $this->assertSame('application/javascript; charset=utf-8', $thirdPartyJsResponseSetupCacheDisabled['responseHeaders']['content-type'][0]);