File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ validateUnitTestNames := {
1212 if (invalidTestName.nonEmpty) {
1313 log.error(
1414 s """ ***************************************************
15- | Found unit test files not matching with naming standards. Unit test files must end with UnitTest.scala .
16- | Refer to README.md file in the GitHub for more information.
17- | Invalid files :
18- | ${invalidTestNameFormatted}
19- | ***************************************************
15+ |Found unit test classes not matching with naming standards. Unit test class must end with ` UnitTest` .
16+ |Refer to README.md file in the GitHub for more information.
17+ |Invalid test classes :
18+ | ${invalidTestNameFormatted}
19+ |***************************************************
2020 | """ .stripMargin
2121 )
2222 }
2323 require(
2424 invalidTestName.isEmpty,
25- s " Found ${invalidTestName.size} tests that doesn't follow naming convention, check the logs above for list of files ! "
25+ s " Found ${invalidTestName.size} tests that doesn't follow naming convention, check the logs above for list of test classes ! "
2626 )
2727 0
2828}
You can’t perform that action at this time.
0 commit comments