KernelServices servicesA = createKernelServicesBuilder(createAdditionalInitialization())
.setBootOperations(ops).build();
Assert.assertTrue("Subsystem boot failed!", servicesA.isSuccessfulBoot());
//Get the model and the persisted xml from the first controller
final ModelNode modelA = servicesA.readWholeModel();
validateModel(modelA);
ModelNode protos = modelA.get(SUBSYSTEM,getMainSubsystemName(),"stack","udp","protocols");
Assert.assertEquals("we should get back same number of protocols that we send",14,protos.asList().size());
servicesA.shutdown();