Added/updated tests

This commit is contained in:
Marvin Scham
2023-06-06 02:10:31 +02:00
parent d1bd6f6d9b
commit 39176b5dc0
4 changed files with 140 additions and 17 deletions

View File

@@ -109,4 +109,11 @@ public final class Config {
public void setProperty(final String key, final String value) {
properties.setProperty(key, value);
}
/**
* Resets the config's properties.
*/
public void reset() {
properties = null;
}
}