-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Ubuntu 12.04.5 LTS
Jenkins:1.619
TestLink:1.9.14
TestLink Plugin:3.10
Hello:
My ENV is following:
Ubuntu 12.04.5 LTS
Jenkins:1.619
TestLink:1.9.14
TestLink Plugin:3.10
I wanna show test result in testlink by using TAP file . and i'm sure tap file format is right. the TAP Extended Test Results can parse it sucess
I think maybe i don't understand the testlink in someplace .
Thanks
Bonsai
lol... i found the question
the tap file i used can parsed by TAP Extended Test Results
but in testlink plugin use the tap4j.jar
###java######
File f = new File("./check_TMC_dir.tap");
TapConsumer tapConsumer = TapConsumerFactory.makeTap13YamlConsumer();
TestSet testSet = tapConsumer.load(f);
System.out.print(testSet.containsNotOk());
List a = testSet.getTapLines();
{ System.out.print(testSet.getTapLines().get(i)); }for(int i =0 ;i< testSet.getTapLines().size(); i++)
i found the TapElement map is null...
so maybe i change the tapfile , everything will be ok..