We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c538094 commit fc03eb7Copy full SHA for fc03eb7
src/test/java/co/helmethair/scalatest/helper/TestHelpers.java
@@ -26,7 +26,12 @@ default EngineDiscoveryRequest createClassDiscoveryRequest(String... classNames)
26
}
27
28
default ConfigurationParameters configurationParametersOf(Map<String, Object> configParams) {
29
- return new ConfigurationParameters() {
+ return new ConfigurationParameters() {
30
+ @Override
31
+ public Set<String> keySet() {
32
+ return configParams.keySet();
33
+ }
34
+
35
@Override
36
public Optional<String> get(String key) {
37
return Optional.ofNullable(configParams.get(key).toString());
0 commit comments