Skip to content
Snippets Groups Projects
Commit 973d1e6d authored by Nikolaus Krismer's avatar Nikolaus Krismer
Browse files

changed config test, so it works on all servers (local and testsystem)

parent c937f70f
No related branches found
No related tags found
No related merge requests found
......@@ -9,24 +9,32 @@ import org.testng.annotations.Test;
public class ConfigTest {
@Test
public void testGetProperties() {
public void testGetMaxConnection() {
final Config config = new Config();
Assert.assertEquals(config.getProperty("db.maxConnections"), "50", "Property db.maxConnections");
}
@Test
public void testGetBatchSize() {
final Config config = new Config();
Assert.assertEquals(config.getProperty("db.batchSize"), "250", "Property db.batchSize");
}
@Test
public void testGetDbPort() {
final Config config = new Config();
Assert.assertEquals(config.getProperty("org.postgresql.port"), "5432", "Property org.postgresql.servername");
}
@Test
public void testGetProperty() {
public void testGetDbConnections() {
final Config config = new Config();
Assert.assertEquals(config.getProperty("db.maxConnections"), "50", "Property db.maxConnections");
}
@Test
public void testDBProperties() {
public void testDbName() {
final Config config = new Config();
Assert.assertEquals(config.getDBServerName(), "localhost", "Property servername");
Assert.assertEquals(config.getDBName(), "isochrone", "Property database name");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment