All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.microbule.test.hello.HelloTestCase Maven / Gradle / Ivy

The newest version!
package org.microbule.test.hello;

import org.junit.Test;
import org.microbule.test.JaxrsTestCase;

public abstract class HelloTestCase extends JaxrsTestCase {
//----------------------------------------------------------------------------------------------------------------------
// Other Methods
//----------------------------------------------------------------------------------------------------------------------

    @Override
    protected HelloService createImplementation() {
        return new HelloServiceImpl();
    }

    @Test
    public void testSayHello() {
        assertEquals("Hello, Microbule!", createProxy().sayHello("Microbule"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy