assertExpectedValue(null, "xxx.yyy");
}
@Test
public void testGetProperty() {
final EasyMockProperties instance = EasyMockProperties.getInstance();
// use the default
assertEquals("1", instance.getProperty("easymock.a", "10"));
// don't use the default
assertEquals("10", instance.getProperty("easymock.z", "10"));
// null default
assertNull(instance.getProperty("easymock.z", null));
}