UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

How do I make unit tests for watchOS app?

Forums > watchOS

How do I make unit tests for watchOS app? From what I found for now I know that XCTest framework doesn't support watchOS and WatchKit currently. However, maybe are there any workarounds for that problem to test at least some code? I would like to test app with SwiftUI interface and lifecycle.

5      

@Malauch did you have any luck with this? I am having the same problem.

5      

@twostraws  Site AdminHWS+

This become possible literally yesterday – watchOS unit tests are now supported in Xcode 12.5 beta!

6      

@Malauch, @alfielefeuvre did you succeed in making WatchOs unit tests with Xcode 12.5 ?

I tried to make a very simple dummy test

import XCTest

class BaseTestCase: XCTestCase {

    func testDummy() {
        XCTAssertTrue(1 == 1)
    }

}

Then, change the active scheme to the WatchKit ExtensionTests scheme

But, everytime I run the test, I have an XCode crash - Xcode quit unexpectedly

Do you have the same issue?

5      

The way you configure your tests files is different from iOS. The apple documentation is very well written and detailed:

https://developer.apple.com/documentation/watchkit/setting_up_tests_for_your_watchos_app

You should have a look

5      

The above documentation page has moved here: https://developer.apple.com/documentation/watchos-apps/setting-up-tests-for-your-watchos-app

For me, I needed to edit by test scheme and set the executeable under run.

4      

I am new in this forum. I have some questions about this forum. These questions are shown below😉😉 : https://www.hackingwithswift.com/forums/watchos/how-do-i-make-unit-tests-for-watchos-app/3728 If anyone has information about this thread. Please guide me below. I am very confused about that😥😥.

4      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.