package dk.daoas.daoadresseservice.test; import org.junit.Test; import dk.daoas.daoadresseservice.db.DatabaseLayerImplementation; import static org.junit.Assert.assertFalse; public class DatabaseDebugTest { /* * This is to prevent that we build a production war in DEBUG mode */ @Test public void testDabaseDebugmode() { assertFalse( DatabaseLayerImplementation.DEBUG ); } }