DataProviderに渡されたメソッドからTextContextを取得することは可能ですか?これが私の言いたいことです。
@DataProvider(name= "foo")
public static Object[][] testData(Method method){
TestContext tc = //possible?
//reason for this, I want to get some property from TextContext
Object x = tc.getAttribute("bar");
}