We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Components which are testable must implement the Component interface.
implement
Component
Thus, the class should look similar to this:
public class myComponent implements Component { public String getName() { return "My Component"; } public Boolean test() { //do stuff return true; } }