@Test
public void createProvisionedFabric() throws Exception {
System.out.println("The fabric has now been created somewhere and we have a controller for it, so lets define our requirements");
FabricRequirements requirements = new FabricRequirements();
requirements.profile("mq-default").minimumInstances(1);
FabricAssertions.assertRequirementsSatisfied(fabricController, requirements);
// now lets ensure that the autoscaler can scale back down again, stopping the broker
requirements.profile("mq-default").minimumInstances(0).maximumInstances(0);