@Test
public void testChainingString() throws Exception {
DynamicStringProperty node1 = new DynamicStringProperty("node1", "v1");
StringProperty node2 = new HystrixPropertiesChainedArchaiusProperty.StringProperty("node2", node1);
HystrixPropertiesChainedArchaiusProperty.StringProperty node3 = new HystrixPropertiesChainedArchaiusProperty.StringProperty("node3", node2);
assertTrue("" + node3.get(), "v1".equals(node3.get()));