File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ validateUnitTestNames := {
12
12
if (invalidTestName.nonEmpty) {
13
13
log.error(
14
14
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
+ |***************************************************
20
20
| """ .stripMargin
21
21
)
22
22
}
23
23
require(
24
24
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 ! "
26
26
)
27
27
0
28
28
}
You can’t perform that action at this time.
0 commit comments