1 /** 2 * Logback: the generic, reliable, fast and flexible logging framework. 3 * 4 * Copyright (C) 1999-2006, QOS.ch 5 * 6 * This library is free software, you can redistribute it and/or modify it under 7 * the terms of the GNU Lesser General Public License as published by the Free 8 * Software Foundation. 9 */ 10 package ch.qos.logback.access.db; 11 12 import junit.framework.*; 13 14 public class PackageTest extends TestCase { 15 16 public static Test suite() { 17 TestSuite suite = new TestSuite(); 18 suite.addTest(new JUnit4TestAdapter(DBAppenderTest.class)); 19 suite.addTest(new JUnit4TestAdapter(DBAppenderIntegrationTest.class)); 20 return suite; 21 } 22 }