@@ -211,17 +211,13 @@ void TestsPrinter::genVerboseTestCase(const Tests::MethodDescription &methodDesc
211
211
const Tests::MethodTestCase &testCase,
212
212
const std::optional<LineInfo::PredicateInfo> &predicateInfo) {
213
213
TestsPrinter::verboseParameters (methodDescription, testCase);
214
- ss << NL;
215
214
216
215
printLazyVariables (methodDescription, testCase, true );
217
- ss << NL;
218
216
219
217
printLazyReferences (methodDescription, testCase, true );
220
- ss << NL;
221
218
222
219
if (!testCase.isError ()) {
223
220
TestsPrinter::verboseOutputVariable (methodDescription, testCase);
224
- ss << NL;
225
221
}
226
222
TestsPrinter::verboseFunctionCall (methodDescription, testCase);
227
223
markTestedFunctionCallIfNeed (methodDescription.name , testCase);
@@ -248,6 +244,7 @@ void TestsPrinter::printLazyVariables(const Tests::MethodDescription &methodDesc
248
244
for (const auto ¶mValue : testCase.paramValues ) {
249
245
printLazyVariables (paramValue.lazyParams , paramValue.lazyValues );
250
246
}
247
+ ss << NL;
251
248
}
252
249
}
253
250
@@ -270,6 +267,7 @@ void TestsPrinter::printLazyReferences(const Tests::MethodDescription &methodDes
270
267
for (const auto &lazy : testCase.lazyReferences ) {
271
268
strAssignVar (lazy.varName , lazy.typeName );
272
269
}
270
+ ss << NL;
273
271
}
274
272
}
275
273
@@ -388,6 +386,7 @@ void TestsPrinter::verboseParameters(const Tests::MethodDescription &methodDescr
388
386
}
389
387
printClassObject (methodDescription, testCase);
390
388
printFunctionParameters (methodDescription, testCase, true );
389
+ ss << NL;
391
390
}
392
391
393
392
void TestsPrinter::printFunctionParameters (const Tests::MethodDescription &methodDescription,
@@ -459,6 +458,7 @@ void TestsPrinter::verboseOutputVariable(const Tests::MethodDescription &methodD
459
458
visitor::VerboseParameterVisitor (typesHandler, this , true , types::PointerUsage::RETURN)
460
459
.visit (expectedType, PrinterUtils::EXPECTED, testCase.returnValue .view .get (), std::nullopt);
461
460
}
461
+ ss << NL;
462
462
}
463
463
464
464
void TestsPrinter::verboseFunctionCall (const Tests::MethodDescription &methodDescription,
0 commit comments