mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#457 - When ebean.properties does not exist do not log error message
This commit is contained in:
@@ -2,24 +2,14 @@ package com.avaje.ebean.config;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class PropertyMapTest {
|
||||
|
||||
@Test
|
||||
public void testDefaultProperties() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testAsProperties() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEvaluateProperties() throws Exception {
|
||||
|
||||
PropertyMap.defaultProperties();
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -28,57 +18,6 @@ public class PropertyMapTest {
|
||||
String home = System.getenv("HOME");
|
||||
PropertyMap map = new PropertyMap();
|
||||
assertEquals(home, map.eval("${HOME}"));
|
||||
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetBoolean() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetInt() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGetLong() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGet() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testGet1() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPutEvalAll() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPutEval() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPut() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRemove() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEntrySet() throws Exception {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user