package lectures.assertions.advanced;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/AssertionsAdvanced.pptx", "Lectures/AssertionsAdvanced.pdf", "Videos/AssertionsAdvanced.avi"})
public interface ElementChecker<ElementType> {
    public boolean check(ElementType element);
}