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

org.mockserver.junit.jupiter.MockServerSettings Maven / Gradle / Ivy

There is a newer version: 5.15.0
Show newest version
package org.mockserver.junit.jupiter;

import org.junit.jupiter.api.extension.ExtendWith;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Configure MockServer when used in conjunction with {@link MockServerExtension}
 */
@ExtendWith(MockServerExtension.class)
@Retention(RetentionPolicy.RUNTIME)
public @interface MockServerSettings {
    boolean perTestSuite() default false;
    int[] ports() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy