All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.reflect.MethodMatcher Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal.reflect;

/**
 * An interface to validate conformance of input arguments to its target method.
 *
 * @author Nitin Verma
 */
public interface MethodMatcher {
  /**
   * Checks if the arguments conform to the method.
   *
   * @return conformance
   */
  boolean conforms();

  /**
   * If possible gives an array consumable by java method invoker.
   *
   * @return conforming argument array
   */
  Object[] getConformingArguments();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy