testing - How do I test my iOS Apps -
my question maybe silly, can coach me?
except doing test(most white box testing) while coding, after app built, have testing tools or special method doing test?
all can imaging now, manual testing functionality of app.
thanks everyone.
update: added section 'automated testing ios4'
as professional tester suggestion should have healthy mix of automated , manual testing. examples below in .net should easy find tool whatever technique using.
automated testing
unit testing
use nunit test classes, functions , interaction between them.
http://www.nunit.org/index.phpautomated functional testing
if it's possible should automate lot of functional testing. frame works have functional testing built them. otherwise have use tool it. if developing web sites/applications might want @ selenium.
http://www.peterkrantz.com/2005/selenium-for-aspnet/continuous integration
use ci make sure automated tests run every time in team makes commit project.
http://martinfowler.com/articles/continuousintegration.htmlautomated testing ios4
automate testing of application scripting touch events using new uiautomation instrument.
links:
manual testing
as love automated testing is, imho, not substitute manual testing. main reason being automated can told , verify has been informed view pass/fail. human can use it's intelligence find faults , raise questions appear while testing else.
- exploratory testing
et low cost , effective way find defects in project. take advantage of intelligence of human being , teaches testers/developers more project other testing technique know of. doing et session aimed @ every feature deployed in test environment not effective way find problems fast, way learn , fun!
http://www.satisfice.com/articles/et-article.pdf
Comments
Post a Comment