Rename jee7schedule -> jee7
This commit is contained in:
parent
9055ecbc6f
commit
90ca609762
2
pom.xml
2
pom.xml
|
@ -52,7 +52,7 @@
|
||||||
<module>json</module>
|
<module>json</module>
|
||||||
<module>json-path</module>
|
<module>json-path</module>
|
||||||
<module>junit5</module>
|
<module>junit5</module>
|
||||||
<module>jee7schedule</module>
|
<module>jee7</module>
|
||||||
<!-- <module>jpa-storedprocedure</module> -->
|
<!-- <module>jpa-storedprocedure</module> -->
|
||||||
|
|
||||||
<module>log4j</module>
|
<module>log4j</module>
|
||||||
|
|
|
@ -1,37 +1,30 @@
|
||||||
package com.baeldung.xmlunit;
|
package com.baeldung.xmlunit;
|
||||||
|
|
||||||
import static org.hamcrest.MatcherAssert.assertThat;
|
|
||||||
import static org.hamcrest.Matchers.equalTo;
|
|
||||||
import static org.hamcrest.Matchers.greaterThan;
|
|
||||||
import static org.hamcrest.core.IsNot.not;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertNotNull;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
import static org.xmlunit.matchers.CompareMatcher.isIdenticalTo;
|
|
||||||
import static org.xmlunit.matchers.CompareMatcher.isSimilarTo;
|
|
||||||
import static org.xmlunit.matchers.HasXPathMatcher.hasXPath;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.Iterator;
|
|
||||||
|
|
||||||
import org.junit.Ignore;
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.w3c.dom.NamedNodeMap;
|
import org.w3c.dom.NamedNodeMap;
|
||||||
import org.w3c.dom.Node;
|
import org.w3c.dom.Node;
|
||||||
import org.xmlunit.builder.DiffBuilder;
|
import org.xmlunit.builder.DiffBuilder;
|
||||||
import org.xmlunit.builder.Input;
|
import org.xmlunit.builder.Input;
|
||||||
import org.xmlunit.diff.ComparisonControllers;
|
import org.xmlunit.diff.*;
|
||||||
import org.xmlunit.diff.DefaultNodeMatcher;
|
|
||||||
import org.xmlunit.diff.Diff;
|
|
||||||
import org.xmlunit.diff.Difference;
|
|
||||||
import org.xmlunit.diff.ElementSelectors;
|
|
||||||
import org.xmlunit.validation.Languages;
|
import org.xmlunit.validation.Languages;
|
||||||
import org.xmlunit.validation.ValidationProblem;
|
import org.xmlunit.validation.ValidationProblem;
|
||||||
import org.xmlunit.validation.ValidationResult;
|
import org.xmlunit.validation.ValidationResult;
|
||||||
import org.xmlunit.validation.Validator;
|
import org.xmlunit.validation.Validator;
|
||||||
import org.xmlunit.xpath.JAXPXPathEngine;
|
import org.xmlunit.xpath.JAXPXPathEngine;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.Iterator;
|
||||||
|
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
import static org.hamcrest.Matchers.greaterThan;
|
||||||
|
import static org.hamcrest.core.IsNot.not;
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
import static org.xmlunit.matchers.CompareMatcher.isIdenticalTo;
|
||||||
|
import static org.xmlunit.matchers.CompareMatcher.isSimilarTo;
|
||||||
|
import static org.xmlunit.matchers.HasXPathMatcher.hasXPath;
|
||||||
|
|
||||||
public class XMLUnitTest {
|
public class XMLUnitTest {
|
||||||
@Test
|
@Test
|
||||||
public void givenWrongXml_whenValidateFailsAgainstXsd_thenCorrect() {
|
public void givenWrongXml_whenValidateFailsAgainstXsd_thenCorrect() {
|
||||||
|
|
Loading…
Reference in New Issue