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

net.thucydides.core.steps.service.JUnitCleanupMethodAnnotationProvider Maven / Gradle / Ivy

There is a newer version: 4.1.20
Show newest version
package net.thucydides.core.steps.service;


import java.util.ArrayList;
import java.util.List;

public class JUnitCleanupMethodAnnotationProvider implements CleanupMethodAnnotationProvider {

    @Override
    public List getCleanupMethodAnnotations() {
        List cleanupAnnotationTags = new ArrayList<>();
        cleanupAnnotationTags.add("@org.junit.After()");
        cleanupAnnotationTags.add("@org.junit.AfterClass()");
        return cleanupAnnotationTags;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy