Hi,
thanks a lot for your message.
I have read your article. It is very interessing. However you are using testRunner, testCase in your code. I do coding without these. Because I code everything in the mock service. The reason is that I do not want to use a Test Suite! (which means, that I create my own test suite in my mock service)
Anyway I just wanted to make my report much more beautiful than it is now. ex:
errorFile.append("1) Length of the product Number:")
errorFile.append(productNumber.length()==10)
errorFile.append("2) name of the product:")
errorFile.append(product == "xyz" )
so my output would be: 1) Length of the product Number:true 2) name of the product:false
however what I want to do is something like a excel - table:
Testing My Product
12.05.2014
No Test Case Result
1) Length of the product Number true
2) name of the product: false
do you know how I can do that? Thanks for time in advance

Regards
Cancan
