Skip to content

Commit

Permalink
Fixed link from testNg to Junit (replaced with correct)
Browse files Browse the repository at this point in the history
Aligned class name with Helidon
  • Loading branch information
tomas-langer committed Sep 13, 2023
1 parent a3b8281 commit d37f373
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* If set to {@code true}, the existing (or default) MicroProfile configuration would be used.
* By default uses a configuration constructed using all {@link AddConfig}
* annotations and {@link #configSources()}.
* When set to false and a {@link org.junit.jupiter.api.BeforeAll} method registers a custom configuration
* When set to false and a {@link org.testng.annotations.BeforeClass} method registers a custom configuration
* with {@link org.eclipse.microprofile.config.spi.ConfigProviderResolver}, the result is undefined, though
* tests have shown that the registered config may be used (as BeforeAll ordering is undefined by
* JUnit, it may be called after our extension)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
/**
* TestNG extension to support Helidon CDI container in tests.
*/
public class HelidonTestNGListener implements IClassListener, ITestListener {
public class HelidonTestNgListener implements IClassListener, ITestListener {

private static final Set<Class<? extends Annotation>> HELIDON_TEST_ANNOTATIONS =
Set.of(AddBean.class, AddConfig.class, AddExtension.class, Configuration.class);
Expand Down
4 changes: 2 additions & 2 deletions microprofile/testing/testng/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import io.helidon.microprofile.testing.testng.HelidonTestNGListener;
import io.helidon.microprofile.testing.testng.HelidonTestNgListener;

/**
* TestNG extension module to run CDI tests.
Expand All @@ -32,6 +32,6 @@

exports io.helidon.microprofile.testing.testng;

provides org.testng.ITestNGListener with HelidonTestNGListener;
provides org.testng.ITestNGListener with HelidonTestNgListener;

}

0 comments on commit d37f373

Please sign in to comment.