tags:

views:

48

answers:

3

Hello,

My question maybe silly, but can anyone coach me?

Except doing some test(most likely white box testing) while coding, after the App was built, do we have some testing tools or special method for doing the test?

All I can imaging for now, is only manual testing the functionality of my App.

Thanks everyone.

A: 

Update: Added section 'Automated testing for iOS4'

As a proffesional tester my suggestion is that you should have a healthy mix of automated and manual testing. The Examples below are in .net but it should be easy to find a tool for whatever technique you are using.

AUTOMATED TESTING

MANUAL TESTING
As much as I love automated testing it is, IMHO, not a substitute for manual testing. The main reason being that an automated can only do what it is told and only verify what it has been informed to view as pass/fail. A human can use it's intelligence to find faults and raise questions that appear while testing something else.

  • Exploratory Testing
    ET is a very low cost and effective way to find defects in a project. It take advantage of the intelligence of a human being and a teaches the testers/developers more about the project than any other testing technique i know of. Doing an ET session aimed at every feature deployed in the test environment is not only an effective way to find problems fast, but also a good way to learn and fun!
    http://www.satisfice.com/articles/et-article.pdf
Jonas Söderström
Yep, Jonas you're right. It's important to have a health mix of manual testing and Automation testing. But the only question is, are there any automation testing tools for iOS app?
Daniel Chen
Hi Daniel. I have updated my answer with some links for Automated testing for iOS4. Hope it helps.
Jonas Söderström
A: 

I suggest you take a look at the iPhoneUnitTests sample code posted by Apple on their developer site.

coob
A: 

You might also want to check out FoneMonkey.

FoneMonkey is a free and open source functional testing tool for iOS applications providing record and playback of complex interaction scenarios.

Learn more at http://www.gorillalogic.com/fonemonkey.

Stu Stern