File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,18 @@ validateUnitTestNames := {
11
11
val invalidTestNameFormatted = invalidTestName.mkString(" \n " )
12
12
if (invalidTestName.nonEmpty) {
13
13
log.error(
14
- s """ Found unit test files not matching with naming standards. Unit test files must end with UnitTest.scala.
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.
15
17
| Invalid files:
16
18
| ${invalidTestNameFormatted}
19
+ | ***************************************************
17
20
| """ .stripMargin
18
21
)
19
22
}
20
23
require(
21
24
invalidTestName.isEmpty,
22
- s " Found ${invalidTestName.size} tests that doesn't follow naming convention! "
25
+ s " Found ${invalidTestName.size} tests that doesn't follow naming convention, check the logs above for list of files ! "
23
26
)
24
27
0
25
28
}
You can’t perform that action at this time.
0 commit comments