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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description
Some test methods from Error suites are missing on Problems view and in SARIF report. Probably the issue scope is bigger.
To Reproduce
types/Generics
Expected behavior
All test methods from error suites should be shown on Problems view.
Actual behavior
9 tests are failing, 7 are displayed on Problems view. 2 tests are missing in SARIF report either.
Visual proofs (screenshots, logs, images)
Comparing Error suites and Problems view, these 2 are missing:
@Test @DisplayName("mapAsNonStaticField: object.nonStaticMap.put(\"key\", \"value\") : True -> ThrowNullPointerException") public void testMapAsNonStaticField_MapPut() { Generics generics = new Generics(); CollectionAsField object = new CollectionAsField(); object.nonStaticMap = null; /* This test fails because method [org.utbot.examples.types.Generics.mapAsNonStaticField] produces [java.lang.NullPointerException] org.utbot.examples.types.Generics.mapAsNonStaticField(Generics.java:27) */ generics.mapAsNonStaticField(object); } @Test @DisplayName("methodWithArrayTypeBoundary: -> throw NullPointerException") public void testMethodWithArrayTypeBoundaryThrowsNPE() { Generics generics = new Generics(); /* This test fails because method [org.utbot.examples.types.Generics.methodWithArrayTypeBoundary] produces [java.lang.NullPointerException] org.utbot.examples.types.ArrayTypeParameters.methodWithArrayTypeBoundary(Generics.java:51) org.utbot.examples.types.Generics.methodWithArrayTypeBoundary(Generics.java:45) */ generics.methodWithArrayTypeBoundary(); }
Environment
Windows 10 Pro IntelliJ IDEA 2022.3.3 Ultimate Gradle, JDK 17
Additional context
Checked in a new Gradle project with JDK 8 - 1 test was missing
The text was updated successfully, but these errors were encountered:
mmvpm
No branches or pull requests
Description
Some test methods from Error suites are missing on Problems view and in SARIF report.
Probably the issue scope is bigger.
To Reproduce
types/Generics
with default settingsExpected behavior
All test methods from error suites should be shown on Problems view.
Actual behavior
9 tests are failing, 7 are displayed on Problems view.
2 tests are missing in SARIF report either.
Visual proofs (screenshots, logs, images)
Comparing Error suites and Problems view, these 2 are missing:
Environment
Windows 10 Pro
IntelliJ IDEA 2022.3.3 Ultimate
Gradle, JDK 17
Additional context
Checked in a new Gradle project with JDK 8 - 1 test was missing
The text was updated successfully, but these errors were encountered: