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

com.atlassian.oai.validator.pact.IgnoreApiValidation Maven / Gradle / Ivy

There is a newer version: 2.44.1
Show newest version
package com.atlassian.oai.validator.pact;

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

/**
 * A marker annotation used to disable API validation for an individual test.
 * 

* Useful for ignoring validation on a test that is expected to fail validation * (e.g. testing malformed request/response, building expectations for endpoints that don't yet exist etc.) */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface IgnoreApiValidation {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy