Skip to content

Instantly share code, notes, and snippets.

@jogaco
Created May 21, 2017 17:33
Show Gist options
  • Save jogaco/578c8085acc3e2fd4345653daa24e996 to your computer and use it in GitHub Desktop.
Save jogaco/578c8085acc3e2fd4345653daa24e996 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial: sample-data.xml file for dbunit-maven-plugin
<?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