
net.sf.jsptest.assertion.AlwaysAcceptChooser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsptest-framework Show documentation
Show all versions of jsptest-framework Show documentation
The core framework functionality for JspTest.
The newest version!
package net.sf.jsptest.assertion;
import org.w3c.dom.Element;
/**
* An ElementChooser that always accepts any offered Element.
*
* @author Lasse Koskela
*/
public class AlwaysAcceptChooser implements ElementChooser {
public boolean accept(Element element) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy