-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test Resources Cleanup, XmlHandler Improve, Unit Tests (#4)
* Test Resources Cleanup, XmlHandler Improve, Unit Tests - Added getNodeFromXPath, for single Node retrieval. - Deleted test_resource_2.xml - Adapted test_resource_1.xml - Added more unit tests to XmlHandlerTest.java - .editorconfig updated * CHANGELOG.md Updated, README.md Updated * maven.yml Updated * maven.yml Updated
- Loading branch information
Showing
8 changed files
with
158 additions
and
67 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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,14 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<root> | ||
<element1>Value 1</element1> | ||
<element2>Value 2</element2> | ||
<emptyElement></emptyElement> | ||
<nestedElement> | ||
<subElement>SubValue</subElement> | ||
</nestedElement> | ||
<elements> | ||
<element>Item 1</element> | ||
<element>Item 2</element> | ||
<element>Item 3</element> | ||
</elements> | ||
<root xmlns="http://example.com/test"> | ||
<test-element>Test Value</test-element> | ||
<empty-element></empty-element> | ||
<self-closing/> | ||
<element-group> | ||
<nested-element>Item 1</nested-element> | ||
<nested-element>Item 2</nested-element> | ||
<nested-element>Item 3</nested-element> | ||
</element-group> | ||
</root> |
This file was deleted.
Oops, something went wrong.