This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DatabaseTest { | |
public static FakeApplication app; | |
public static DdlGenerator ddl; | |
public static EbeanServer server; | |
@BeforeClass | |
public static void initialize() { | |
/* Start fakeapplication with default in memory db. */ | |
Map<String, String> config = new HashMap<String, String>(Helpers.inMemoryDatabase()); |
NewerOlder