assertEquals(10.2F, bean.getFloatValue());
assertEquals(100, bean.getIntValue());
assertEquals(2010L, bean.getLongValue());
assertEquals("Phil", bean.getStringValue());
StaticPropertiesPropertySource propertySource = (StaticPropertiesPropertySource) context.getBean("propertySource");
final Properties properties = propertySource.getProperties();
properties.setProperty("string.property", "Phil Z");
//check that this updates
assertEquals("Phil Z", bean.getStringValue());