We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eadec94 commit 9bb96e0Copy full SHA for 9bb96e0
1 file changed
core/src/main/kotlin/org/evomaster/core/Main.kt
@@ -138,7 +138,10 @@ class Main {
138
is NoRemoteConnectionException ->
139
logError(
140
"ERROR: ${cause.message}" +
141
- "\n Make sure the EvoMaster Driver for the system under test is running correctly."
+ "\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."
145
)
146
147
is SutProblemException ->
0 commit comments