@@ -165,19 +165,19 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
165
165
166
166
@Test
167
167
fun testInnerVoidCompareChars () {
168
- val summary1 = " Test calls ReturnExample:: compareChars,\n " +
168
+ val summary1 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
169
169
" there it executes conditions:\n " +
170
170
" (n < 1): True\n " +
171
171
" returns from: return ' ';\n " +
172
172
" " // TODO: generates empty String or \n a the end
173
- val summary2 = " Test calls ReturnExample:: compareChars,\n " +
173
+ val summary2 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
174
174
" there it executes conditions:\n " +
175
175
" (n < 1): False\n " +
176
176
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
177
177
" inside this loop, the test executes conditions:\n " +
178
178
" (Character.toChars(i)[0] == a): True\n " +
179
179
" returns from: return b;"
180
- val summary3 = " Test calls ReturnExample:: compareChars,\n " +
180
+ val summary3 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
181
181
" there it executes conditions:\n " +
182
182
" (n < 1): False\n " +
183
183
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
@@ -186,7 +186,7 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
186
186
" (Character.toChars(i)[0] == b): False\n " +
187
187
" Test then returns from: return a;\n " +
188
188
" " // TODO: generates empty String or \n a the end
189
- val summary4 = " Test calls ReturnExample:: compareChars,\n " +
189
+ val summary4 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
190
190
" there it executes conditions:\n " +
191
191
" (n < 1): False\n " +
192
192
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
@@ -235,21 +235,21 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
235
235
236
236
@Test
237
237
fun testInnerReturnCompareChars () {
238
- val summary1 = " Test calls ReturnExample:: compareChars,\n " +
238
+ val summary1 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
239
239
" there it executes conditions:\n " +
240
240
" (n < 1): True\n " +
241
241
" returns from: return ' ';\n " +
242
242
" \n " +
243
243
" Test later returns from: return compareChars(a, b, n);\n "
244
- val summary2 = " Test calls ReturnExample:: compareChars,\n " +
244
+ val summary2 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
245
245
" there it executes conditions:\n " +
246
246
" (n < 1): False\n " +
247
247
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
248
248
" inside this loop, the test executes conditions:\n " +
249
249
" (Character.toChars(i)[0] == a): True\n " +
250
250
" returns from: return b;\n " +
251
251
" Test later returns from: return compareChars(a, b, n);\n "
252
- val summary3 = " Test calls ReturnExample:: compareChars,\n " +
252
+ val summary3 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
253
253
" there it executes conditions:\n " +
254
254
" (n < 1): False\n " +
255
255
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
@@ -259,7 +259,7 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
259
259
" Test then returns from: return a;\n " +
260
260
" \n " + //
261
261
" Test afterwards returns from: return compareChars(a, b, n);\n "
262
- val summary4 = " Test calls ReturnExample:: compareChars,\n " +
262
+ val summary4 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compareChars(char,char,int)} ,\n " +
263
263
" there it executes conditions:\n " +
264
264
" (n < 1): False\n " +
265
265
" iterates the loop for(int i = 0; i < n; i++) once,\n " +
@@ -309,33 +309,33 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
309
309
310
310
@Test
311
311
fun testInnerVoidCompare () {
312
- val summary1 = " Test calls ReturnExample:: compare,\n " +
312
+ val summary1 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
313
313
" there it executes conditions:\n " +
314
314
" (a < 0): False,\n " +
315
315
" (b < 0): True\n " +
316
316
" returns from: return a;\n " +
317
317
" " // TODO: remove blank line
318
- val summary2 = " Test calls ReturnExample:: compare,\n " +
318
+ val summary2 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
319
319
" there it executes conditions:\n " +
320
320
" (a < 0): False,\n " +
321
321
" (b < 0): False,\n " +
322
322
" (b == 10): False,\n " +
323
323
" (a > b): True\n " +
324
324
" returns from: return b;\n " +
325
325
" " // TODO: remove blank line
326
- val summary3 = " Test calls ReturnExample:: compare,\n " +
326
+ val summary3 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
327
327
" there it executes conditions:\n " +
328
328
" (a < 0): False,\n " +
329
329
" (b < 0): False,\n " +
330
330
" (b == 10): True\n " +
331
331
" returns from: return c;\n " +
332
332
" " // TODO: remove blank line
333
- val summary4 = " Test calls ReturnExample:: compare,\n " +
333
+ val summary4 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
334
334
" there it executes conditions:\n " +
335
335
" (a < 0): True\n " +
336
336
" returns from: return a;\n " +
337
337
" " // TODO: remove blank line
338
- val summary5 = " Test calls ReturnExample:: compare,\n " +
338
+ val summary5 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
339
339
" there it executes conditions:\n " +
340
340
" (a < 0): False,\n " +
341
341
" (b < 0): False,\n " +
@@ -344,7 +344,7 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
344
344
" (a < b): True\n " +
345
345
" returns from: return a;\n " +
346
346
" " // TODO: remove blank line
347
- val summary6 = " Test calls ReturnExample:: compare,\n " +
347
+ val summary6 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
348
348
" there it executes conditions:\n " +
349
349
" (a < 0): False,\n " +
350
350
" (b < 0): False,\n " +
@@ -404,14 +404,14 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
404
404
405
405
@Test
406
406
fun testInnerReturnCompare () {
407
- val summary1 = " Test calls ReturnExample:: compare,\n " +
407
+ val summary1 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
408
408
" there it executes conditions:\n " +
409
409
" (a < 0): False,\n " +
410
410
" (b < 0): True\n " +
411
411
" returns from: return a;\n " +
412
412
" \n " +
413
413
" Test then returns from: return compare(a, b);\n "
414
- val summary2 = " Test calls ReturnExample:: compare,\n " +
414
+ val summary2 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
415
415
" there it executes conditions:\n " +
416
416
" (a < 0): False,\n " +
417
417
" (b < 0): False,\n " +
@@ -420,21 +420,21 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
420
420
" returns from: return b;\n " +
421
421
" \n " +
422
422
" Test afterwards returns from: return compare(a, b);\n "
423
- val summary3 = " Test calls ReturnExample:: compare,\n " +
423
+ val summary3 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
424
424
" there it executes conditions:\n " +
425
425
" (a < 0): False,\n " +
426
426
" (b < 0): False,\n " +
427
427
" (b == 10): True\n " +
428
428
" returns from: return c;\n " +
429
429
" \n " +
430
430
" Test then returns from: return compare(a, b);\n "
431
- val summary4 = " Test calls ReturnExample:: compare,\n " +
431
+ val summary4 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
432
432
" there it executes conditions:\n " +
433
433
" (a < 0): True\n " +
434
434
" returns from: return a;\n " +
435
435
" \n " +
436
436
" Test next returns from: return compare(a, b);\n "
437
- val summary5 = " Test calls ReturnExample:: compare,\n " +
437
+ val summary5 = " Test calls{@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
438
438
" there it executes conditions:\n " +
439
439
" (a < 0): False,\n " +
440
440
" (b < 0): False,\n " +
@@ -444,7 +444,7 @@ class SummaryReturnExampleTest : SummaryTestCaseGeneratorTest(
444
444
" returns from: return a;\n " +
445
445
" \n " +
446
446
" Test afterwards returns from: return compare(a, b);\n "
447
- val summary6 = " Test calls ReturnExample:: compare,\n " +
447
+ val summary6 = " Test calls {@link org.utbot.examples.algorithms. ReturnExample# compare(int,int)} ,\n " +
448
448
" there it executes conditions:\n " +
449
449
" (a < 0): False,\n " +
450
450
" (b < 0): False,\n " +
0 commit comments