Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import com.github.javaparser.symbolsolver.resolution.typesolvers.ClassLoaderTypeSolver;
import com.google.common.truth.Truth;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.File;
Expand Down Expand Up @@ -53,7 +52,6 @@ class NameResolutionTest {
}
*/
@Test
@Disabled("Repair")
void contractMemberVariable() throws IOException {
loadAndResolveAll("ResolutionTest.java");
/*JmlContract contract = declaration.getMethodsByName("foo").get(0).getContracts().get().get(0);
Expand Down Expand Up @@ -109,7 +107,6 @@ void contractMemberVariable() throws IOException {
}

@Test
@Disabled("Repair")
void jmlBinderExpression() throws IOException {
loadAndResolveAll("JmlQuantifiedExprResolutionTest.java");
}
Expand All @@ -120,7 +117,6 @@ void jmlBinderExpression_static() throws IOException {
}

@Test
@Disabled("Repair")
void locals() throws IOException {
loadAndResolveAll("Locals.java");
}
Expand Down
2 changes: 0 additions & 2 deletions tools/lsp/src/test/kotlin/tests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class HoverTest {

class CodeActionTests {
@Test
@Disabled("investigate")
fun test1() {
val file = TextDocumentIdentifier(File(workspace, "Example.java").toUri)
val params = CodeActionParams(
Expand Down Expand Up @@ -97,7 +96,6 @@ class FileDiagnosticTests {
}

class DeclarationTests {
@Disabled("investigate")
@Test
fun test1() {
val file = TextDocumentIdentifier(File(workspace, "Declarations.java").toUri)
Expand Down
Loading