public class MockServerRule extends Object implements org.junit.rules.TestRule
| Constructor and Description |
|---|
MockServerRule(Object target)
Start the MockServer prior to test execution and stop the MockServer after the tests have completed.
|
MockServerRule(Object target,
boolean perTestSuite)
Start the MockServer prior to test execution and stop the MockServer after the tests have completed.
|
MockServerRule(Object target,
boolean perTestSuite,
Integer... port)
Start the proxy prior to test execution and stop the proxy after the tests have completed.
|
MockServerRule(Object target,
Integer... port)
Start the proxy prior to test execution and stop the proxy after the tests have completed.
|
public MockServerRule(Object target)
target - an instance of the test being executedpublic MockServerRule(Object target, boolean perTestSuite)
target - an instance of the test being executedperTestSuite - indicates how many instances of MockServer are created
if true a single MockServer is created per JVM
if false one instance per test class is createdpublic MockServerRule(Object target, Integer... port)
target - an instance of the test being executedport - the HTTP(S) port for the proxypublic MockServerRule(Object target, boolean perTestSuite, Integer... port)
target - an instance of the test being executedperTestSuite - indicates how many instances of MockServer are createdport - the HTTP(S) port for the proxyCopyright © 2017. All rights reserved.