OPEN - issue SPR-6346: NoSuchMethodException in DerbyEmbeddedDatabaseConfigurer

Added derby test case to EmbeddedDatabaseBuilderTests
This commit is contained in:
David Syer 2009-11-15 13:17:42 +00:00
parent 35d4d7bbac
commit 35472300ae
2 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ public class EmbeddedDatabaseBuilderTests {
}
@Test
public void testBuildDerby() {
EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder(new ClassRelativeResourceLoader(getClass()));
EmbeddedDatabase db = builder.setType(DERBY).addScript("db-schema-derby.sql").addScript("db-test-data.sql").build();

View File

@ -0,0 +1 @@
create table T_TEST (NAME varchar(50) not null);