com.codacy.scoobydoo.WaitForAnalysis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scooby-doo-fwk Show documentation
Show all versions of scooby-doo-fwk Show documentation
Automated testing framework
package com.codacy.scoobydoo;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
// Overwrites the default number of retries to, in principle, a smaller specified number.
@Retention(RUNTIME)
@Target({METHOD})
public @interface WaitForAnalysis {}