We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d290903 commit 1f25419Copy full SHA for 1f25419
utbot-framework-test/src/main/java/org/utbot/examples/strings/StringConcat.java
@@ -2,19 +2,20 @@
2
3
import org.utbot.api.mock.UtMock;
4
5
-class Test {
6
- int x;
7
8
- @Override
9
- public String toString() {
10
- if (x == 42) {
11
- throw new IllegalArgumentException();
+public class StringConcat {
+ static class Test {
+ public int x;
+
+ @Override
+ public String toString() {
12
+ if (x == 42) {
13
+ throw new IllegalArgumentException();
14
+ }
15
+ return "x = " + x;
16
}
- return "x = " + x;
17
-}
18
-public class StringConcat {
19
String str;
20
public String concatArguments(String a, String b, String c) {
21
return a + b + c;
0 commit comments