-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#314 Some Unit-Test, because jacoco for IT test seems to be ignored
- Loading branch information
Thomas Ruhroth
committed
Oct 16, 2024
1 parent
b0ff72d
commit dbde42e
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
9 changes: 8 additions & 1 deletion
9
...st/java/org/aim42/htmlSanityCheck/htmlsanitycheckmavenplugin/HtmlSanityCheckMojoTest.java
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,12 +1,19 @@ | ||
package org.aim42.htmlSanityCheck.htmlsanitycheckmavenplugin; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.aim42.htmlsanitycheck.Configuration; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
class HtmlSanityCheckMojoTest { | ||
|
||
|
||
@Test | ||
void setupConfiguration() { | ||
return; | ||
HtmlSanityCheckMojo mojo = new HtmlSanityCheckMojo(); | ||
Configuration config = mojo.setupConfiguration(); | ||
assertTrue(config != null); | ||
|
||
} | ||
} |