pull/17111/head
Phillip Webb 6 years ago
parent 199606da4e
commit 08dbb2d8c4

@ -163,9 +163,9 @@ class SpringIterableConfigurationPropertySourceTests {
EnumerablePropertySource<?> source = new MapPropertySource("test", map); EnumerablePropertySource<?> source = new MapPropertySource("test", map);
SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source, SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source,
DefaultPropertyMapper.INSTANCE); DefaultPropertyMapper.INSTANCE);
assertThat(adapter.stream().count()).isEqualTo(2); assertThat(adapter.stream()).hasSize(2);
map.put("key3", "value3"); map.put("key3", "value3");
assertThat(adapter.stream().count()).isEqualTo(3); assertThat(adapter.stream()).hasSize(3);
} }
@Test @Test
@ -177,10 +177,10 @@ class SpringIterableConfigurationPropertySourceTests {
EnumerablePropertySource<?> source = new MapPropertySource("test", map); EnumerablePropertySource<?> source = new MapPropertySource("test", map);
SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source, SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source,
DefaultPropertyMapper.INSTANCE); DefaultPropertyMapper.INSTANCE);
assertThat(adapter.stream().count()).isEqualTo(2); assertThat(adapter.stream()).hasSize(2);
map.setThrowException(true); map.setThrowException(true);
map.put("key3", "value3"); map.put("key3", "value3");
assertThat(adapter.stream().count()).isEqualTo(3); assertThat(adapter.stream()).hasSize(3);
} }
@Test @Test
@ -192,9 +192,9 @@ class SpringIterableConfigurationPropertySourceTests {
EnumerablePropertySource<?> source = new OriginTrackedMapPropertySource("test", map); EnumerablePropertySource<?> source = new OriginTrackedMapPropertySource("test", map);
SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source, SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source,
DefaultPropertyMapper.INSTANCE); DefaultPropertyMapper.INSTANCE);
assertThat(adapter.stream().count()).isEqualTo(2); assertThat(adapter.stream()).hasSize(2);
map.put("key3", "value3"); map.put("key3", "value3");
assertThat(adapter.stream().count()).isEqualTo(3); assertThat(adapter.stream()).hasSize(3);
} }
@Test @Test
@ -206,9 +206,9 @@ class SpringIterableConfigurationPropertySourceTests {
EnumerablePropertySource<?> source = new OriginTrackedMapPropertySource("test", map, true); EnumerablePropertySource<?> source = new OriginTrackedMapPropertySource("test", map, true);
SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source, SpringIterableConfigurationPropertySource adapter = new SpringIterableConfigurationPropertySource(source,
DefaultPropertyMapper.INSTANCE); DefaultPropertyMapper.INSTANCE);
assertThat(adapter.stream().count()).isEqualTo(2); assertThat(adapter.stream()).hasSize(2);
map.put("key3", "value3"); map.put("key3", "value3");
assertThat(adapter.stream().count()).isEqualTo(2); assertThat(adapter.stream()).hasSize(2);
} }
/** /**

Loading…
Cancel
Save