We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d6213a commit e165164Copy full SHA for e165164
1 file changed
src/test/java/org/buddycloud/channelserver/ConfigurationTest.java
@@ -2,6 +2,7 @@
2
3
import static org.junit.Assert.*;
4
5
+import java.io.FileInputStream;
6
import java.util.Collection;
7
8
import org.junit.After;
@@ -11,11 +12,14 @@
11
12
13
public class ConfigurationTest {
14
15
+ private static final String CONFIGURATION_PROPERTIES = "src/test/resources/configuration.properties";
16
+
17
Configuration configuration;
-
18
19
@Before
20
public void setUp() throws Exception {
21
configuration = Configuration.getInstance();
22
+ configuration.load(new FileInputStream(CONFIGURATION_PROPERTIES));
23
}
24
25
@After
0 commit comments