Package org.mockserver

Source Code of org.mockserver.ClientServerMavenPluginStopTest

package org.mockserver;

import org.junit.Test;
import org.mockserver.client.proxy.ProxyClient;
import org.mockserver.client.server.MockServerClient;

import java.net.ConnectException;
import java.util.concurrent.TimeUnit;

/**
* @author jamesdbloom
*/
public class ClientServerMavenPluginStopTest {

    @Test(expected = RuntimeException.class)
    public void shouldNotBeAbleToReachMockServer() throws InterruptedException {
        new MockServerClient("127.0.0.1", 8092).reset();
    }

}
TOP

Related Classes of org.mockserver.ClientServerMavenPluginStopTest

TOP
Copyright © 2018 www.massapi.com. 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.