Fix TestRunner.run calls in TestSQLBigDecimalId, TestSQLDateId, and TestSQLBigIntegerId

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@736320 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2009-01-21 14:53:10 +00:00
parent c21184bf11
commit 50f65873f5
3 changed files with 3 additions and 3 deletions

View File

@ -56,6 +56,6 @@ public class TestSQLBigDecimalId
}
public static void main(String[] args) {
TestRunner.run(SQLBigDecimalIdEntity.class);
TestRunner.run(TestSQLBigDecimalId.class);
}
}

View File

@ -57,6 +57,6 @@ public class TestSQLBigIntegerId
}
public static void main(String[] args) {
TestRunner.run(SQLBigIntegerIdEntity.class);
TestRunner.run(TestSQLBigIntegerId.class);
}
}

View File

@ -57,7 +57,7 @@ public class TestSQLDateId
}
public static void main(String[] args) {
TestRunner.run(SQLDateIdEntity.class);
TestRunner.run(TestSQLBigIntegerId.class);
}
}