isa-group/IDLReasoner

执行Test类时报错:com.google.common.util.concurrent.UncheckedExecutionException

Opened this issue · 2 comments

public class AdditionalTests {

    @Test
    public void idl4oasTest() {
        Analyzer analyzer = new Analyzer(
                "oas",
                "./src/test/resources/OAS_example.yaml",
                "/optionalParams",
                "get");
        assertTrue(analyzer.isValidIDL(), "The IDL should be VALID");
        System.out.println("Test passed: idl4oasTest.");
    }
  }

I got an exception when I tried to execute this method:

com.google.common.util.concurrent.UncheckedExecutionException: com.google.common.util.concurrent.UncheckedExecutionException: java.lang.IllegalStateException: Unable to load cache item

  1. What is the jdk version of the project?

Hello,

The JDK version used in our project is JDK 8. However, it's worth noting that now we are working on a newer version of the IDL reasoner based on Choco Solver. You can find more information about it here: IDLReasonerChoco

Thanks

thank you very much!