Total rebrand across KMM project: - Kotlin package: com.example.casera -> com.tt.honeyDue (dirs + declarations) - Gradle: rootProject.name, namespace, applicationId - Android: manifest, strings.xml (all languages), widget resources - iOS: pbxproj bundle IDs, Info.plist, entitlements, xcconfig - iOS directories: Casera/ -> HoneyDue/, CaseraTests/ -> HoneyDueTests/, etc. - Swift source: all class/struct/enum renames - Deep links: casera:// -> honeydue://, .casera -> .honeydue - App icons replaced with honeyDue honeycomb icon - Domains: casera.treytartt.com -> honeyDue.treytartt.com - Bundle IDs: com.tt.casera -> com.tt.honeyDue - Database table names preserved Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
1.3 KiB
Swift
32 lines
1.3 KiB
Swift
import XCTest
|
|
|
|
/// Rebuild plan for legacy: Suite0_OnboardingTests.test_onboarding
|
|
/// Split into smaller tests to isolate focus/input/navigation failures.
|
|
final class Suite0_OnboardingRebuildTests: BaseUITestCase {
|
|
func testR001_onboardingWelcomeLoadsAndCanNavigateToLoginEntry() {
|
|
let welcome = OnboardingWelcomeScreen(app: app)
|
|
welcome.waitForLoad(timeout: defaultTimeout)
|
|
welcome.tapAlreadyHaveAccount()
|
|
|
|
let login = LoginScreenObject(app: app)
|
|
login.waitForLoad(timeout: defaultTimeout)
|
|
}
|
|
|
|
func testR002_startFreshFlowReachesCreateAccount() {
|
|
let createAccount = TestFlows.navigateStartFreshToCreateAccount(app: app, residenceName: "Rebuild Home")
|
|
createAccount.waitForLoad(timeout: defaultTimeout)
|
|
}
|
|
|
|
func testR003_createAccountExpandedFormFieldsAreInteractable() throws {
|
|
throw XCTSkip("Skeleton: implement deterministic focus assertions for username/email/password fields")
|
|
}
|
|
|
|
func testR004_emailFieldCanFocusAndAcceptTyping() throws {
|
|
throw XCTSkip("Skeleton: implement replacement for legacy email focus failure")
|
|
}
|
|
|
|
func testR005_createAccountContinueOnlyAfterValidInputs() throws {
|
|
throw XCTSkip("Skeleton: validate disabled/enabled state transition for Create Account")
|
|
}
|
|
}
|