}
@Test
public void testChainingInteger() throws Exception {
DynamicIntegerProperty node1 = new DynamicIntegerProperty("node1", 1);
IntegerProperty node2 = new HystrixPropertiesChainedArchaiusProperty.IntegerProperty("node2", node1);
HystrixPropertiesChainedArchaiusProperty.IntegerProperty node3 = new HystrixPropertiesChainedArchaiusProperty.IntegerProperty("node3", node2);
assertTrue("" + node3.get(), 1 == node3.get());