de.a9d3.testing.method.MethodMatcherInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base-test Show documentation
Show all versions of base-test Show documentation
A project which helps you testing your java classes for basic things like getter==setter,
hashCode and equals methods and other programming schemas.
Also provides a convenient way to instantiate classes with seeded random data.
The newest version!
package de.a9d3.testing.method;
import de.a9d3.testing.tuple.MethodTuple;
import java.util.List;
public interface MethodMatcherInterface {
List match(Class c);
}