Skip to content

Commit

Permalink
rm empty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dshimo committed Apr 17, 2024
1 parent dd48511 commit 17f60f5
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,6 @@ public void processServerEnv() throws FileNotFoundException, Exception {
assertEquals("This value is expected to be overriden from 9081 to 1111", "1111", props.get("http.port"));
}

// 2. environment variables
@Test
public void environmentVariables() throws FileNotFoundException, Exception {

}

// 3. bootstrap.properties
@Test
public void processBootstrapProperties() throws FileNotFoundException, Exception {
Expand Down Expand Up @@ -177,12 +171,6 @@ public void processBootstrapProperties() throws FileNotFoundException, Exception
configDocument.processBootstrapProperties();
}

// 4. Java system properties
@Test
public void jvmOptions() {

}

// 5. Variables loaded from files in the ${server.config.dir}/variables directory or other
// directories as specified by the VARIABLE_SOURCE_DIRS environment variable
@Test
Expand Down Expand Up @@ -214,12 +202,6 @@ public void variablesDir() throws FileNotFoundException, Exception {
assertEquals("outer_space", props.getProperty("outer.source"));
assertEquals("1", props.getProperty("VALUE_1"));
}

// 7. variables declared on the command line
@Test
public void CLI() {

}

// Run the method
@Test
Expand Down

0 comments on commit 17f60f5

Please sign in to comment.