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.

link|improve this question

63% accept rate
feedback

4 Answers

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
link|improve this answer
1  
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 Sep 27 '10 at 9:46
Hi Daniel. I have updated my answer with some links for Automated testing for iOS4. Hope it helps. – Jonas Söderström Sep 28 '10 at 6:24
1  
Great response. I'll chime in that you should never expect automated testing to fully test your code, even if you record "100% coverage." Testing is never conclusive. Automated testing helps you structure your verification, quantify its pieces, then FOCUS your manual testing time to best effect. – Andrew Wolfe Feb 22 at 15:34
feedback

Take a look at http://www.telerik.com/automated-testing-tools/ios-testing.aspx. Supports automated and manual testing/sending feedback from within the app with annotated screen shots

link|improve this answer
Hello @Faris, thanks it looks really great! – Daniel Chen Mar 31 at 18:46
feedback

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

link|improve this answer
feedback

FoneMonkey is a free and open source functional testing automation tool available for download from Gorilla Logic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.