1
我想獲得每次運行測試類時執行的測試方法。我用下面的代碼有沒有什麼辦法可以從`org.testng.ITestResult`` ITestNGMethod`轉換爲`java.lang.reflect.Method`
@AfterMethod
public void logout(ITestResult result){
Method method=result.getMethod(); //compliation error- Type mismatch: cannot convert from ITestNGMethod to Method
readAnnotation(method);
}
有沒有辦法從org.testng.ITestResult
ITestNGMethod
轉換爲java.lang.reflect.Method