Skip to content

Commit a11a60e

Browse files
JUnit Jupiter best practices (#91)
Co-authored-by: Moderne <[email protected]>
1 parent be0870d commit a11a60e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/codehaus/plexus/velocity/DefaultVelocityComponentTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
import static org.junit.jupiter.api.Assertions.assertNotNull;
3030

3131
@PlexusTest
32-
public class DefaultVelocityComponentTest {
32+
class DefaultVelocityComponentTest {
3333

3434
@Inject
3535
private VelocityComponent velocity;
3636

3737
@Test
38-
public void testBasic() {
38+
void basic() {
3939

4040
// test the properties
4141
String value = (String) velocity.getEngine().getProperty("hello");

0 commit comments

Comments
 (0)