KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > samples > petclinic > jdbc > JdbcClinicTests


1 package org.springframework.samples.petclinic.jdbc;
2
3 import org.springframework.samples.petclinic.AbstractClinicTests;
4
5 /**
6  * Live unit tests for HsqlJdbcClinic implementation.
7  * "applicationContext-jdbc.xml" determines the actual beans to test.
8  *
9  * @author Juergen Hoeller
10  */

11 public class JdbcClinicTests extends AbstractClinicTests {
12
13     protected String JavaDoc[] getConfigLocations() {
14         return new String JavaDoc[] { "/org/springframework/samples/petclinic/jdbc/applicationContext-jdbc.xml" };
15     }
16
17 }
18
Popular Tags