DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
The Latest "Software Integration: The Intersection of APIs, Microservices, and Cloud-Based Systems" Trend Report
Get the report
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Testing, Tools, and Frameworks
  4. Pros and Cons of Using XCTest for iOS Testing

Pros and Cons of Using XCTest for iOS Testing

XCTest seems like a great fit for several levels of automated testing during iOS development, but it can't be perfect. What are the pros and cons of using it?

Ville-Veikko Helppi user avatar by
Ville-Veikko Helppi
·
Dec. 19, 16 · Opinion
Like (5)
Save
Tweet
Share
10.95K Views

Join the DZone community and get the full member experience.

Join For Free

There are actually very few test automation frameworks that are tightly coupled with the development tool itself. XCTest framework is a framework that enables its users to write basic unit tests, performance tests, and some level of UI tests for iOS apps. As always, frameworks that couple tightly with their development tool and environment have some pros and cons that users should be aware of. In addition to pros and cons of XCTest, we’ll take a look at some basic things about XCTest framework in this blog.

The thing with frameworks (like XCTest framework) that integrate tightly with development environment is that those frameworks typically provide easy-to-use and seamless workflow with other components and features of the development environment. Also, there has been lots of changes in the iOS app test automation landscape lately due to Apple’s decision of deprecating UI Automation from Xcode.

Now, if you haven’t used XCTest before and you started out with it, there are few things worth of mentioning before diving in. Let’s start with a brief introduction.

A Brief Introduction to XCTest Framework

Like Android Studio, Xcode provides feature-rich software testing capabilities for developers that can significantly help enhancing the stability of the software. Furthermore, Xcode provides XCTest and XCUITest that are extremely helpful for achieving and building better quality software. Thoroughly tested apps, and regardless of whether they're done at unit-level or UI-level, improve the user experience and accelerate adoption of those sort of apps.

Frankly, XCTest is not a new framework but it has evolved quite well with Xcode releases. In fact, the XCTest framework was introduced with Xcode 5 a couple of years ago. What XCTest basically does is allow its users to do unit testing for Xcode projects (iOS apps among them) as it is currently considered as one of the top options for iOS app testing. Writing any tests with XCTest is a trivial task to iOS developers because XCTest is fully compatible with both Objective-C and Swift. In addition, all test classes developers create in Xcode project are basically subclasses of XCTestCase.

XCTest tests can be executed in a simulator or real physical device. If you use real devices locally, you just need to make sure all provisioning side of things (provisioning profile) is valid and set properly to test the target. The test methods used in XCTest are instance methods so no parameters are passed nor they return a value. For this, the name also begins with "test" and all added tests are visible in Test Navigator of your Xcode project.

Pros of the XCTest Framework

Many of today’s test automation frameworks are based on frameworks and layers that development tools provide with them. In case of iOS this is XCTest and with Android most of the frameworks are based on JUnit and Android instrumentation.

The advantages of XCTest over the other frameworks for iOS app testing are as follows.

Easy to Learn and No Additional Components Required

Xcode provides everything to get started with test automation with XCTest. Xcode’s XCTest is an integral part of the tool so testing is fairly easy to start and convenient to work with.

Native iOS Language Support

Basically, writing tests with the same programming language that your application is built with is not a requirement, but it gives some confidence for developers to create tests for their apps. The other way around, some developers may also think this differently and prefer other additional languages, frameworks, and tools to be used in test creation. Nevertheless, there is no learning curve or language barriers to get started with XCTest test creation.

Xcode Test Recorder

This is mostly a feature for UI tests, but as XCTest is closely related with XCUITest, the UI recording is possible with Xcode environment. The UI testing capabilities with Xcode include UI recording, generating code out of those recordings, run tests identically as those were intended while UI test was recorded. Record-and-playback testing tools have plenty of benefits and can get testers do the job even without understanding underlying software. In addition, recording tests again is possible or simply editing the generated piece of code with whatever changes have been done for the app itself. In short, record and playback tools provide a fast way to create tests, a decent level of accuracy, and is not too sensitive to user input errors.

Integrating With Continuous Integration

Integrating XCTest with continuous integration is also easy. Xcode allows XCTest tests to be executed using command-line scripts/shell and seamlessly integrated with Xcode’s continuous integration bots. However, there is a way to integrated XCTest scripts and the development environment with more widely used CI systems, such as Jenkins, but there are lots of things you need to know and sometimes – despite XCTest and Xcode have provided this capability for some time – tests end up failing just for no reason.

Faster Than On-Top-of-It Frameworks

Many other frameworks are relying on XCTest. Despite the fact that those frameworks provide more features and higher abstraction levels for testing and better capabilities, they still rely on the foundation of XCTest. This naturally makes XCTest faster as you don’t need to rely on abstraction APIs, albeit in many cases lightweight.

Cons of the XCTest Framework

XCTest isn’t perfect, but it provides some excellent basic functionality and capabilities to exercise tests on your iOS apps. As XCTest has improved by each version of Xcode, there are few cons you should consider.

No Cross-Platform Support

Apply typically builds everything to be available only on their own tools, devices, and environments. As this is understandable in the case of integral testing API and functionalities, many of testers prefer cross-platform test automation frameworks and have that one test script to work on both platforms, Android, and iOS. One great option, which is also an XCTest-based framework on iOS, is Appium. On Android, Appium utilizes Selendroid and uiautomator as its foundation and converts those commands written in Selenium Webdriver to native commands.

Limited Programming Language Support

As this is clearly one of iOS app development’s advantages, it is also one of its cons. Basically, app developers and tests created for those apps are limited to build with Objective-C or Swift. Again, abstraction frameworks on top of XCTest will expand the programming language selection and provide testers a freedom of choice with their tools and programming languages. 

Flaky

XCTest isn’t that new, but it still has some issues with basic usability and in the robustness of creating tests for iOS apps. Doing some the basic unit tests and running on those in the simulator may work just fine, but when you try to run the same tests on devices, you’ll see that there is some room for stability improvements with XCTest and Xcode in general.

Conclusion

XCTest is a valid choice for basic unit-level testing of iOS apps and functionality. However, you need to add a lot of those sort of basic tests to thoroughly cover the logic, and that makes functional UI testing more suitable for iOS apps.

What are your experiences with XCTest and do you feel it will be the number one choice for app developers? Weigh in with a comment below!

unit test app Framework Cons XCode Continuous Integration/Deployment Test automation

Published at DZone with permission of Ville-Veikko Helppi, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • 10 Most Popular Frameworks for Building RESTful APIs
  • Spring Boot vs Eclipse MicroProfile: Resident Set Size (RSS) and Time to First Request (TFR) Comparative
  • ClickHouse: A Blazingly Fast DBMS With Full SQL Join Support
  • Scaling Your Testing Efforts With Cloud-Based Testing Tools

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: