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 afcce7a commit d25deeeCopy full SHA for d25deee
executors/java/src/test/kotlin/com/javaaidev/llmcodeexecutor/executor/java/JavaCodeExecutorTest.kt
@@ -2,18 +2,16 @@ package com.javaaidev.llmcodeexecutor.executor.java
2
3
import com.javaaidev.llmcodeexecutor.core.CodeExecutionRequest
4
import org.junit.jupiter.api.Test
5
-import kotlin.test.Ignore
6
7
class JavaCodeExecutorTest {
8
@Test
9
- @Ignore
10
fun basic() {
11
val result = JavaCodeExecutor.execute(
12
CodeExecutionRequest(
13
"""
14
public class Main {
15
public static void main(String[] args) {
16
- System.out.println("hello");
+ System.out.println("Hello");
17
}
18
19
""".trimIndent()
0 commit comments