Package com.alibaba.dubbo.config.spring.registry

Examples of com.alibaba.dubbo.config.spring.registry.MockRegistry


            }
        });
        try {
            service.export();
            Collection<Registry> collection = MockRegistryFactory.getCachedRegistry();
            MockRegistry registry = (MockRegistry)collection.iterator().next();
            URL url = registry.getRegistered().get(0);
            Assert.assertEquals(Constants.GENERIC_SERIALIZATION_BEAN, url.getParameter(Constants.GENERIC_KEY));
        } finally {
            MockRegistryFactory.cleanCachedRegistry();
            service.unexport();
        }
View Full Code Here

TOP

Related Classes of com.alibaba.dubbo.config.spring.registry.MockRegistry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.