public void testCreatedNestedObjects() throws Exception
{
_store.configureConfigStore(_virtualHost, _recoveryHandler);
final UUID queueId = new UUID(0, 1);
final UUID queue2Id = new UUID(1, 1);
final Map<String, Object> EMPTY_ATTR = Collections.emptyMap();
final UUID exchangeId = new UUID(0, 2);
final Map<String, Object> bindingAttributes = new HashMap<String, Object>();
bindingAttributes.put(Binding.EXCHANGE, exchangeId);
bindingAttributes.put(Binding.QUEUE, queueId);
final Map<String, Object> binding2Attributes = new HashMap<String, Object>();
binding2Attributes.put(Binding.EXCHANGE, exchangeId);
binding2Attributes.put(Binding.QUEUE, queue2Id);
final UUID bindingId = new UUID(0, 3);
final UUID binding2Id = new UUID(1, 3);
_store.create(queueId, "Queue", EMPTY_ATTR);
_store.create(queue2Id, "Queue", EMPTY_ATTR);
_store.create(exchangeId, "Exchange", EMPTY_ATTR);
_store.update(true,