Files
suixinkan_ios_new/suixinkanUITests/Support/UITestMenuTitleAliases.swift
汉秋 d27438b264 补充 Auth/Tasks/ScenicPermission/Live 单元测试,并完善 UI Test 登录与会话稳定性。
移除 LoginViewModel 硬编码账号,扩展登录流程测试覆盖;调整 ZLoginSmokeUITests 执行顺序与路由直达逻辑,避免清空 Keychain 影响其它用例。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-26 12:44:10 +08:00

22 lines
523 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// UITestMenuTitleAliases.swift
// suixinkanUITests
//
// Created by Codex on 2026/6/26.
//
import Foundation
/// `HomeMenuRouter.titleMap`
enum UITestMenuTitleAliases {
///
static func resolve(_ menuTitle: String) -> String {
switch menuTitle {
case "系统设置":
return "设置中心"
default:
return menuTitle
}
}
}