jtulach@355: /* jtulach@355: * To change this template, choose Tools | Templates jtulach@355: * and open the template in the editor. jtulach@355: */ jtulach@355: jtulach@355: package org.apidesign.livedb.example; jtulach@355: jtulach@355: import junit.framework.TestCase; jtulach@355: jtulach@355: /** jtulach@355: * jtulach@355: * @author Jaroslav Tulach jtulach@355: */ jtulach@355: public class LiveDBTest extends TestCase { jtulach@355: jtulach@355: public LiveDBTest(String testName) { jtulach@355: super(testName); jtulach@355: } jtulach@355: jtulach@355: public void testSomeMethod() { jtulach@355: DBAccess db = new DBAccess(); jtulach@355: db.jarda = "Ahoj"; jtulach@355: assertEquals("Ahoj", db.jarda); jtulach@355: } jtulach@355: jtulach@355: }