swsnu / wecfall2014

0 stars 0 forks source link

Robotium: Android UI Test Automation Tool #3

Open minitu opened 9 years ago

minitu commented 9 years ago

Robotium Robotium

Robotium is an UI test automation tool for an Android application. In other words, it provides an easy and efficient way to write extensive tests for the user interface of your Android application.

There are several benefits of using Robotium:

(excerpt from Robotium homepage)

The overall steps of using Robotium are as follows: 1. Download Robotium 2. Add downloaded .jar file to the build path of your test project (In Eclipse: right-click on test project → Properties → Java Build Path → Add (external) Jar) 3. Write tests, taking advantage of Robotium APIs (Sample application with test project) 4. Run the test (In Eclipse: right-click on test class → Run as → Android JUnit Test) 5. Fix your application

Refer to the links below for more information on Robotium.

bgchun commented 9 years ago

@minitu Thanks for sharing the info.