KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > springframework > samples > petclinic > ojb > PersistenceBrokerClinicTests


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

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