Index: trunk/fmgVen/test/com/fmguler/ven/sample/Sample.java
===================================================================
--- trunk/fmgVen/test/com/fmguler/ven/sample/Sample.java	(revision 25)
+++ trunk/fmgVen/test/com/fmguler/ven/sample/Sample.java	(revision 26)
@@ -40,6 +40,6 @@
     public static void main(String[] args) {
         buildDatabase();
-        testGet();
-        //rollbackDatabase();
+        testSave();
+        rollbackDatabase();
     }
 
@@ -139,6 +139,5 @@
             Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation(getDataSource().getConnection());
             Liquibase liquibase = new Liquibase("etc/test-db/test-db-changelog.xml", new FileSystemFileOpener(), database);
-            //liquibase.rollback(51, "");
-            liquibase.rollback("0", "");
+            liquibase.rollback("tag-single-table", "");
             Locale.setDefault(currLocale);
         } catch (SQLException ex) {
Index: trunk/fmgVen/test/com/fmguler/ven/sample/domain/SomeDomainObject.java
===================================================================
--- trunk/fmgVen/test/com/fmguler/ven/sample/domain/SomeDomainObject.java	(revision 25)
+++ trunk/fmgVen/test/com/fmguler/ven/sample/domain/SomeDomainObject.java	(revision 26)
@@ -25,5 +25,5 @@
  */
 public class SomeDomainObject {
-    private int no;
+    private Integer id;
     private String name;
     private String description;
@@ -31,15 +31,15 @@
 
     /**
-     * @return the no
+     * @return the id
      */
-    public int getNo() {
-        return no;
+    public Integer getId() {
+        return id;
     }
 
     /**
-     * @param no the no to set
+     * @param id the id to set
      */
-    public void setNo(int no) {
-        this.no = no;
+    public void setId(Integer id) {
+        this.id = id;
     }
 
@@ -87,5 +87,5 @@
 
     public String toString() {
-        return no + " " + name + " " + description + " " + date;
+        return id + " " + name + " " + description + " " + date;
     }
 }
