xctest
Installation
SKILL.md
XCTest
Apple's testing framework for Swift and Objective-C.
When to Use
- iOS/macOS unit testing
- UI automation with XCUITest
- Performance testing
- Integration testing
Quick Start
import XCTest
@testable import MyApp
final class CalculatorTests: XCTestCase {
var calculator: Calculator!