Skip to content

Tags: rcasia/neotest-java

Tags

v0.18.5

Toggle v0.18.5's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix(tests): need to require vim.treesitter upfront for tests

v0.18.4

Toggle v0.18.4's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix(tests): need to require vim.treesitter upfront for tests

v0.18.3

Toggle v0.18.3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: only ignore the main directory files

v0.18.2

Toggle v0.18.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: root finder should look for settings.gradle file

Related to #185

v0.18.1

Toggle v0.18.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: detect gradle project by settings file

Not every gradle project contains the build.gradle file in its base.
Should detect on settings file instead.

Fixes #184

v0.18.0

Toggle v0.18.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
feat: add TestFactory annotation

v0.17.8

Toggle v0.17.8's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: throw error when trying to resolve a test class name from a non-…

…test file

v0.17.7

Toggle v0.17.7's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: show output there was an unexpected error in the test execution

v0.17.6

Toggle v0.17.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(resolve_qualified_name): null pointer when package is empty (#167)

Fix a null pointer when the test class has no package at all.

Example file:

```java
// file:  ExampleTest.java
class ExampleTest {
}
```

it should return **"ExampleTest"**

v0.17.5

Toggle v0.17.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: multiple classes at level zero (#164)

Fixes #161 

The problem was that there were several classes in the same test file at
level zero and the first was being taken.

Example:

```java
// Filename: ApplicationTests.java

@TestConfiguration
class TestConfig {
    @bean
    public String someBean() {
        return "some bean";
    }
}

@SpringBootTest
class ApplicationTests {

    @test
    void contextLoads() {
    }

}
```

It was resolved by filtering non-test class names.