File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
utbot-summary-tests/src/test/kotlin/examples Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ class SummaryExceptionClusteringExamplesTest : SummaryTestCaseGeneratorTest(
23
23
" @utbot.methodUnderTest {@link org.utbot.examples.exceptions.ExceptionClusteringExamples#differentExceptions(int)}\n " +
24
24
" @utbot.executesCondition {@code (i == 0): False},\n " +
25
25
" {@code (i == 1): True}\n " +
26
- " @utbot.throwsException {@link org.utbot.examples.exceptions.MyCheckedException} after condition: {@code i == 1} "
26
+ " @utbot.throwsException {@link org.utbot.examples.exceptions.MyCheckedException} after condition: i == 1"
27
27
val summary3 = " @utbot.classUnderTest {@link ExceptionClusteringExamples}\n " +
28
28
" @utbot.methodUnderTest {@link org.utbot.examples.exceptions.ExceptionClusteringExamples#differentExceptions(int)}\n " +
29
29
" @utbot.executesCondition {@code (i == 0): False},\n " +
30
30
" {@code (i == 1): False},\n " +
31
31
" {@code (i == 2): True}\n " +
32
- " @utbot.throwsException {@link java.lang.IllegalArgumentException} after condition: {@code i == 2} "
32
+ " @utbot.throwsException {@link java.lang.IllegalArgumentException} after condition: i == 2"
33
33
val summary4 = " @utbot.classUnderTest {@link ExceptionClusteringExamples}\n " +
34
34
" @utbot.methodUnderTest {@link org.utbot.examples.exceptions.ExceptionClusteringExamples#differentExceptions(int)}\n " +
35
35
" @utbot.executesCondition {@code (i == 0): False},\n " +
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class SummaryMinStackTest : SummaryTestCaseGeneratorTest(
64
64
val summary1 = " @utbot.classUnderTest {@link MinStack}\n " +
65
65
" @utbot.methodUnderTest {@link org.utbot.examples.structures.MinStack#removeValue()}\n " +
66
66
" @utbot.executesCondition {@code (size <= 0): True}\n " +
67
- " @utbot.throwsException {@link java.lang.RuntimeException} after condition: {@code size <= 0} "
67
+ " @utbot.throwsException {@link java.lang.RuntimeException} after condition: size <= 0"
68
68
69
69
val summary2 = " @utbot.classUnderTest {@link MinStack}\n " +
70
70
" @utbot.methodUnderTest {@link org.utbot.examples.structures.MinStack#removeValue()}\n " +
You can’t perform that action at this time.
0 commit comments