use of org.junit.platform.engine.ConfigurationParameters in project junit5 by junit-team.
the class LauncherConfigurationParametersTests method noConfigParams.
@Test
void noConfigParams() {
ConfigurationParameters configParams = fromMap(emptyMap());
assertThat(configParams.size()).isEqualTo(0);
assertThat(configParams.get(KEY)).isEmpty();
assertThat(configParams.toString()).doesNotContain(KEY);
}
Aggregations