Skip to content

Commit 9bb96e0

Browse files
committed
better error message
1 parent eadec94 commit 9bb96e0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • core/src/main/kotlin/org/evomaster/core

core/src/main/kotlin/org/evomaster/core/Main.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,10 @@ class Main {
138138
is NoRemoteConnectionException ->
139139
logError(
140140
"ERROR: ${cause.message}" +
141-
"\n Make sure the EvoMaster Driver for the system under test is running correctly."
141+
"\n For WHITE-BOX testing (e.g., for JVM applications, requiring to write a driver" +
142+
" class) make sure the EvoMaster Driver for the system under test is running correctly." +
143+
"\n On the other hand, if you are doing BLACK-BOX testing (for any kind of programming language)" +
144+
" without code analyses, remember to specify '--blackBox true' on the command-line."
142145
)
143146

144147
is SutProblemException ->

0 commit comments

Comments
 (0)