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 committed Oct 16, 2024
1 parent b0ff72d commit dbde42e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Empty file.
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 dbde42e

Please sign in to comment.