Skip to content

Commit 6b438a8

Browse files
Fix: CE
1 parent 5de0b74 commit 6b438a8

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

utbot-framework-test/src/main/java/org/utbot/examples/strings/StringConcat.java

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22

33
import org.utbot.api.mock.UtMock;
44

5-
class Test {
6-
int x;
75

8-
@Override
9-
public String toString() {
10-
if (x == 42) {
11-
throw new IllegalArgumentException();
6+
public class StringConcat {
7+
static class Test {
8+
public int x;
9+
10+
@Override
11+
public String toString() {
12+
if (x == 42) {
13+
throw new IllegalArgumentException();
14+
}
15+
return "x = " + x;
1216
}
13-
return "x = " + x;
1417
}
15-
}
1618

17-
public class StringConcat {
1819
String str;
1920
public String concatArguments(String a, String b, String c) {
2021
return a + b + c;

0 commit comments

Comments
 (0)