I am trying to get the Execution date and Time for a test using the QC Java API using OTA Client. following is the code I tried.
public HashMap<String,String> GetTestStatuswdDescription(QC qc){
List<ITSTest> ttcs;
Vector<String> testdetails = new Vector<String>();
HashMap<String,String> DescnStatus = new HashMap<String,String>();
Set<ITestSet> tsets = qc.listOfTestSets();
Iterator<ITestSet> iter = tsets.iterator();
ITestSet acttset = null;
while (iter.hasNext()) {
acttset = (ITestSet) iter.next();
System.out.println(acttset.name());
if (acttset.name().matches(qc.getTestSet())) {
ttcs = qc.listOfTestCases(acttset);
for (int i = 0; i < ttcs.size(); i++) {
System.out.println("======>"
+ ttcs.get(i).name() +"====>"+ttcs.get(i).status()+ "====>"+ ttcs.get(i).field("Exec Date"));
DescnStatus.put(ttcs.get(i).name(), ttcs.get(i).status());
}
}
}
return DescnStatus;
}
I tried to get the field value using the field() method. So it is throwing the following exception.
Exception in thread "main" com4j.ComException: 8004051c (Unknown error) : Invalid field name < Exec Date >. : .\invoke.cpp:517
at com4j.Wrapper.invoke(Wrapper.java:166)
at $Proxy16.field(Unknown Source)
at com.emc.automate.acm.util.QCnReportUtil.GetTestStatuswdDescription(QCnReportUtil.java:170)
at com.emc.automate.acm.util.QCnReportUtil.main(QCnReportUtil.java:47)
Caused by: com4j.ComException: 8004051c (Unknown error) : Invalid field name < Exec Date >. : .\invoke.cpp:517
at com4j.Native.invoke(Native Method)
at com4j.StandardComMethod.invoke(StandardComMethod.java:35)
at com4j.Wrapper$InvocationThunk.call(Wrapper.java:340)
at com4j.Task.invoke(Task.java:51)
at com4j.ComThread.run0(ComThread.java:153)
at com4j.ComThread.run(ComThread.java:134)
ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2
JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:838]
--------------------------------------------------------------------------------------------------
Thanks in advance for any help provided to solve this problem.