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

org.testng.IInvokedMethod Maven / Gradle / Ivy

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

/**
 * An interface representing a method that has been invoked by TestNG.
 *
 * 

This interface is internal. */ public interface IInvokedMethod { /** @return true if this method is a test method */ boolean isTestMethod(); /** @return true if this method is a configuration method (@BeforeXXX or @AfterXXX) */ boolean isConfigurationMethod(); /** @return the test method */ ITestNGMethod getTestMethod(); ITestResult getTestResult(); /** @return the date when this method was run */ long getDate(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy