public void testResourceBundle()
{
ResourceBundle bundle = ResourceBundle.getBundle("org.apache.tapestry.junit.Properties");
ResourceBundlePropertySource source = new ResourceBundlePropertySource(bundle);
expect(source, "fred", "flintstone");
expect(source, "barney", "rubble");
expect(source, "wilma", null);
}