How do I test my iOS Apps

后端 未结 7 1370
傲寒
傲寒 2020-12-12 12:23

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 testin

相关标签:
7条回答
  • 2020-12-12 12:23

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

    0 讨论(0)
  • 2020-12-12 12:23

    I recommend Kiwi, its used for Behavior Driven Development. By far my favorite testing framework, makes testing much more fun, and test much readable and clear.

    https://github.com/allending/Kiwi

    0 讨论(0)
  • 2020-12-12 12:24

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

    0 讨论(0)
  • 2020-12-12 12:26

    Much of testing any application is about understanding what you are testing and areas that should be tested. Some of this comes with experience, but types of things to consider testing about would be:

    • Functionality

    • iOS Design Guidelines / UI

    • Gestures

    • Connectivity

    • Types of devices to test on

    • Audio

    • Data

    • Crash reporting

    • Analytics

    There's a big list of areas to cover.

    0 讨论(0)
  • 2020-12-12 12:32

    There a number of emerging options for automated functional testing, including Appium, Calabash, Frank, and Zucchini.

    0 讨论(0)
  • 2020-12-12 12:38

    Take a look at automated testing tools. Supports automated and manual testing/sending feedback from within the app with annotated screen shots

    0 讨论(0)
提交回复
热议问题