You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"code": "public class Main {\n public int add(int a, int b) {\n return a + b;\n }\n}",
"stdin": "",
"expectedOutput": "",
"runTests": true,
"testCode": "import org.junit.Test;\nimport static org.junit.Assert.*;\n\npublic class MainTest {\n @Test\n public void testAdd() {\n Main main = new Main();\n assertEquals(5, main.add(2, 3));\n assertEquals(0, main.add(-1, 1));\n }\n}"