Created
May 21, 2017 17:33
-
-
Save jogaco/578c8085acc3e2fd4345653daa24e996 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial: sample-data.xml file for dbunit-maven-plugin
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<dataset> | |
<table name="game"> | |
<column>id</column> | |
<column>name</column> | |
<column>description</column> | |
<row> | |
<value description="id">-1</value> | |
<value description="name">name1</value> | |
<value description="description">desc1</value> | |
</row> | |
<row> | |
<value description="id">-2</value> | |
<value description="name">name2</value> | |
<value description="description">desc2</value> | |
</row> | |
<row> | |
<value description="id">-3</value> | |
<value description="name">name3</value> | |
<value description="description">desc3</value> | |
</row> | |
</table> | |
</dataset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment