To generate Android JUnit test case results after test completion

I have an Android JUnit test case that uses Robotium to automate the entire functional flow of my Android application. Nevertheless, I want that after the test is completed I need to write the results to a text file, preferably on an excel sheet, where it writes “Pass” or “Fail” for the various test cases mentioned.

Anticipate your help!

Thanks in advance!

+3
source share
1 answer

You can do this if you are using eclipse by clicking "Export" (see image below)

enter image description here

I am looking for a way for this report to run a command from a dos prompt. I found this:

http://maven.apache.org/surefire/maven-surefire-plugin/

, Robotium Maven.

+1

All Articles