OUR BLOG

Thoughts on development, design and the world we live in.



Category Archives: Test Driven Development

KIFTests talk

You can use iPhone speech synthesizer to announce runs of integration tests. Hear the sounds what will warm your heart every time. It shows that tests are working. Starting 13 test scenarios If you have Siri on your phone Siri’s voice will pronounce the phrases. VSSpeechSynthesizer could be found in XCode 4.4 in iOS PrivateFrameworks [...]

Show Test Coverage in Xcode

There is CoverStory - an open source utility that can show you test coverage for your XCode unit tests. The problem is that CoverStory requires you to pick correct directory where object files and coverage metrics are stored. The directory could change from time to time. If you add this osascript as post test action [...]

Keys to iOS testing: KIF and Kiwi

How to test iOS apps? What frameworks, libraries to use to write automated tests for iOS apps? Where to start and what is current recommended approach for testing on iOS.

Test Driven Development for iPhone

UPDATE: Check out the project source code at: http://github.com/blazingcloud/iphone_logic_testing Here at Blazing Cloud we really like Test-Driven Development (TDD). We try to use it for all of our development projects, and we recently learned how to do it for IPhone development. The unit test tool available for Cocoa development is more like JUnit for Java [...]