Package com.volantis.mcs.service.impl

Examples of com.volantis.mcs.service.impl.ServiceDefinitionImpl


    /**
     * Creates an instance of the class that is to be tested
     * @return
     */
    private ServiceDefinitionImpl createService() {
        return new ServiceDefinitionImpl(TEST_SERVICE_NAME, createStructure());
    }
View Full Code Here


    private ServiceDefinitionImpl createService() {
        return new ServiceDefinitionImpl(TEST_SERVICE_NAME, createStructure());
    }

    public void testGetName() {
        ServiceDefinitionImpl service = createService();
        assertEquals("ServiceDefinitionImpl#getName returned the wrong name",
                     TEST_SERVICE_NAME,
                     service.getName());
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.service.impl.ServiceDefinitionImpl

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.