Skip to content

Commit

Permalink
New(Tests): Empty test
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Dec 11, 2023
1 parent 8dd95d2 commit 466bde4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,13 @@
<groups>default</groups>
</properties>
</profile>
<profile>
<id>empty</id>
<properties>
<groups>empty</groups>
<skip.tests>false</skip.tests>
</properties>
</profile>
<profile>
<id>olm</id>
<properties>
Expand Down
12 changes: 12 additions & 0 deletions src/test/java/io/apicurio/registry/systemtests/EmptyTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package io.apicurio.registry.systemtests;

import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

public class EmptyTest {
@Test
@Tag("empty")
public void emptyTest() {
System.out.println("Empty test!");
}
}

0 comments on commit 466bde4

Please sign in to comment.