Package com.github.dreamhead.moco

Source Code of com.github.dreamhead.moco.AbstractMocoHttpTest

package com.github.dreamhead.moco;

import com.github.dreamhead.moco.helper.MocoTestHelper;
import org.junit.Before;

import static com.github.dreamhead.moco.Moco.httpserver;
import static com.github.dreamhead.moco.helper.RemoteTestUtils.port;

public class AbstractMocoHttpTest {
    protected HttpServer server;
    protected MocoTestHelper helper;

    @Before
    public void setUp() throws Exception {
        helper = new MocoTestHelper();
        server = httpserver(port());
    }
}
TOP

Related Classes of com.github.dreamhead.moco.AbstractMocoHttpTest

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.