Is there any tool for the UI Unit Testing iPhone app (Not SenTestCase)

I'm looking for some tool or approach with which I can do a UI unit test for an iPhone application, however, I know the SenTestCase framework that is used for this code testing. I am looking for testing UI modules.

+6
user-interface iphone unit-testing
source share
6 answers

You can use OCUnit / SenTest to run unit tests in the user interface, as well as in other code - this is Chris Hanson's blog post on Cocoa UI unit testing, but the same principles apply to Cocoa Touch.

+4
source share

Check out UISpec http://code.google.com/p/uispec/

This is an open source ui testing platform designed for iphone.

Hooray!

+7
source share

Try libcat to test and automate the user interface. also providing console mode.

iPhone app online development

https://github.com/wookay/libcat

+2
source share

If you want to create a target audience for your application, you can use the Ruby-based Cucumber shell to remotely access the iPhone GUI: http://www.slideshare.net/undees/iphone-meets-cucumber

- Ian

+1
source share

There is also a Fone Monkey that allows you to record actions and then add statements.

http://www.gorillalogic.com/fonemonkey

+1
source share
0
source share

All Articles