Turned into a monorepo for iOS and Android

This commit is contained in:
2025-12-07 01:36:53 -07:00
parent dcb8b8401b
commit 9dea9f6efa
92 changed files with 1803 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
//
// MagicCounterUITests.swift
// MagicCounterUITests
//
// Created by Atridad Lahiji on 2025-12-06.
//
import XCTest
final class MagicCounterUITests: XCTestCase {
override func setUpWithError() throws {
continueAfterFailure = false
}
override func tearDownWithError() throws {
}
@MainActor
func testExample() throws {
let app = XCUIApplication()
app.launch()
}
@MainActor
func testLaunchPerformance() throws {
measure(metrics: [XCTApplicationLaunchMetric()]) {
XCUIApplication().launch()
}
}
}

View File

@@ -0,0 +1,30 @@
//
// MagicCounterUITestsLaunchTests.swift
// MagicCounterUITests
//
// Created by Atridad Lahiji on 2025-12-06.
//
import XCTest
final class MagicCounterUITestsLaunchTests: XCTestCase {
override class var runsForEachTargetApplicationUIConfiguration: Bool {
true
}
override func setUpWithError() throws {
continueAfterFailure = false
}
@MainActor
func testLaunch() throws {
let app = XCUIApplication()
app.launch()
let attachment = XCTAttachment(screenshot: app.screenshot())
attachment.name = "Launch Screen"
attachment.lifetime = .keepAlways
add(attachment)
}
}