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

com.codacy.scoobydoo.AnnotationTransformer Maven / Gradle / Ivy

There is a newer version: 3.30.0
Show newest version
package com.codacy.scoobydoo;

import com.epam.reportportal.testng.ReportPortalTestNGListener;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import org.testng.IAnnotationTransformer;
import org.testng.annotations.ITestAnnotation;

public class AnnotationTransformer extends ReportPortalTestNGListener implements IAnnotationTransformer {

    @Override
    public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) {
        annotation.setRetryAnalyzer(Retry.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy