Skip to content

Commit

Permalink
#314 Some Unit-Test, because jacoco for IT test seems to be ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Ruhroth authored and ascheman committed Dec 14, 2024
1 parent ff0aa7a commit 75a3fb0
Showing 1 changed file with 8 additions and 1 deletion.
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);

}
}

0 comments on commit 75a3fb0

Please sign in to comment.