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
… 2nd try
  • Loading branch information
Thomas Ruhroth authored and ascheman committed Nov 19, 2024
1 parent 0249a66 commit 9b6ef0d
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
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;
import org.assertj.core.api.Assertions;
import org.junit.jupiter.api.Test;


class HtmlSanityCheckMojoTest {

Expand All @@ -13,7 +14,7 @@ class HtmlSanityCheckMojoTest {
void setupConfiguration() {
HtmlSanityCheckMojo mojo = new HtmlSanityCheckMojo();
Configuration config = mojo.setupConfiguration();
assertTrue(config != null);
Assertions.assertThat(config).isNotNull();

}
}

0 comments on commit 9b6ef0d

Please sign in to comment.