diff --git a/test/sources/application/Helper/WebResourcesHelperTest.php b/test/sources/application/Helper/WebResourcesHelperTest.php new file mode 100644 index 000000000..f9cffcf84 --- /dev/null +++ b/test/sources/application/Helper/WebResourcesHelperTest.php @@ -0,0 +1,39 @@ +assertTrue(file_exists(APPROOT.$sFileRelPath), $sMethodName.' method returns a non existing file: '.$sFileRelPath); + } + } + + public function CheckFilesExistProvider(): array + { + return [ + 'GetJSFilesRelPathsForCKEditor' => ['GetJSFilesRelPathsForCKEditor'], + 'GetCSSFilesRelPathsForC3JS' => ['GetCSSFilesRelPathsForC3JS'], + 'GetJSFilesRelPathsForC3JS' => ['GetJSFilesRelPathsForC3JS'], + ]; + } +}