-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Werner Dietl <[email protected]>
- Loading branch information
Showing
1 changed file
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
# jspecify-conformance | ||
## JSpecify Conformance Tests with the EISOP Checker Framework | ||
|
||
This repository runs the [JSpecify conformance tests](https://github.com/jspecify/jspecify/tree/main/conformance-tests) | ||
with the [EISOP Nullness Checker](https://eisop.github.io/cf/manual/#nullness-checker). | ||
|
||
## Prerequisites | ||
|
||
- Java 8 or higher | ||
|
||
## Running the Tests | ||
|
||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/eisop/jspecify-conformance.git | ||
cd jspecify-conformance | ||
``` | ||
|
||
2. Gradle Assemble: | ||
```bash | ||
./gradlew assmble | ||
``` | ||
|
||
3. Run the Tests: | ||
```bash | ||
./gradlew test | ||
``` | ||
|
||
The project uses a custom test runner, `ConformanceTestRunner`, which is invoked in the `NullnessJSpecifyConformanceTest`. | ||
This runner checks the conformance of the EISOP Nullness Checker against the JSpecify Conformance Tests. |