OPENJPA-871: fix test case name clash problem

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@741752 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Fay Wang 2009-02-06 22:02:01 +00:00
parent ed3889ff69
commit 16778feb29
3 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,7 @@ import javax.persistence.*;
@Entity
@Table(name="DEP1_MBI")
public class Dependent1 {
@EmbeddedId
DependentId1 id;

View File

@ -22,6 +22,7 @@ import javax.persistence.*;
import java.util.*;
@Entity
@Table(name="EMP1_MBI")
public class Employee1 {
@Id
int empId;

View File

@ -40,7 +40,7 @@ public class TestMappedById extends SingleEMFTestCase {
public int dId = 1;
public void setUp() throws Exception {
super.setUp(CLEAR_TABLES, Dependent1.class, Employee1.class,
super.setUp(DROP_TABLES, Dependent1.class, Employee1.class,
DependentId1.class);
}