io.chocotea.core.annotations.JavaxCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chocotea Show documentation
Show all versions of chocotea Show documentation
This library generates postman collection, environment and integration tests from java code
package io.chocotea.core.annotations;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
@Inherited
public @interface JavaxCollection {
String name() default "Sample Collection";
boolean createTest() default false;
String baseUrl() default "{{BASE_URL}}";
String protocol() default "https";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy