diff -r 9d430d9bc4b1 -r 6507a9474b6d samples/livedb/test/org/apidesign/livedb/example/LiveDBTest.java --- a/samples/livedb/test/org/apidesign/livedb/example/LiveDBTest.java Fri Jul 16 23:35:08 2010 +0200 +++ b/samples/livedb/test/org/apidesign/livedb/example/LiveDBTest.java Thu Jul 29 17:44:59 2010 +0200 @@ -1,8 +1,3 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ - package org.apidesign.livedb.example; import java.sql.SQLException; @@ -19,6 +14,7 @@ super(testName); } + // BEGIN: livedb.test public void testSomeMethod() throws SQLException { List ages = Age.query(); assertEquals("One record", 1, ages.size()); @@ -26,5 +22,6 @@ assertEquals("name is apidesign", "apidesign", age.NAME); assertEquals("it is three years old", 3, age.AGE.intValue()); } + // END: livedb.test }