Lines Matching refs:methods
39 * It uses reflection to invoke all public methods without parameters.
40 * All static methods are starting on the current thread.
41 * Other methods including constructor are starting on the EDT.
43 * The methods are sorted by name and invoked in that order.
45 * If no methods throw an exception the test is assumed to have passed.
59 private final Iterator<Method> methods;
67 Set<Method> methods = new TreeSet<Method>(new Comparator<Method>() {
76 methods.add(method);
82 this.methods = methods.iterator();
124 this.method = this.methods.hasNext() && (this.error == null)
125 ? this.methods.next()