0

I've learned that I have to make automated tests for better quality. But I have no experience about tests. My problem is I have no idea. I'm asking any good guidance of making test for applications.

eonil
  • 83,476
  • 81
  • 317
  • 516
  • I've recently started doing automated testing in iOS, and after surveying a couple of options I've decided to use [KIF](http://www.google.com/url?sa=t&rct=j&q=kif%20github&source=web&cd=1&cad=rja&ved=0CCsQFjAA&url=https%3A%2F%2Fgithub.com%2Fkif-framework%2FKIF&ei=yipIUsGeL42TswbM94HwCA&usg=AFQjCNFus0WwHClHMyVxGCZHH1JXPbOz9A&sig2=PSPI-4xRDN3T63yUFmWKDQ&bvm=bv.53217764,d.Yms) for a brief discussion of the alternatives and some sample KIF code.. see my answer [here](http://stackoverflow.com/questions/17229460/kif-how-to-auto-run-stress-test-an-ios-app-to-find-the-cause-of-a-rare-ui-bug) – abbood Sep 29 '13 at 13:28

2 Answers2

3

You can use the Sen Testing kit that ships with Xcode. I have written a shell script that will create an Xcode project template for you, that template already includes a target for the so-called “logic tests” and a sample logic test. See Xtemplate on GitHub.

zoul
  • 102,279
  • 44
  • 260
  • 354
2

One solution is google-toolbox-for-mac.

Rod
  • 52,748
  • 3
  • 38
  • 55