blob: 138dee8fa66c79d813dfa44dab489b70e98fe477 [file] [log] [blame]
package com.google.inject.persist;
import com.google.inject.InjectorBuilder;
import com.google.inject.Stage;
import com.google.inject.persist.jpa.JpaPersistModule;
import junit.framework.TestCase;
/**
* @author dhanji@google.com (Dhanji R. Prasanna)
*/
public class EdslTest extends TestCase {
public void testModuleConfig() throws Exception {
new InjectorBuilder()
.addModules(new JpaPersistModule("myunit"))
.stage(Stage.PRODUCTION)
.requireExplicitBindings()
.build();
}
}