Files
Ho Ngoc Hai 76d75c753b Migrate
2026-05-23 18:37:02 +07:00

19 lines
564 B
Swift

import XCTest
@testable import AppClientBaseSwiftSmoke
/// EN: Smoke tests for localization assets.
/// VI: Smoke tests cho tài nguyên bn đa hóa.
final class LocalizationManifestTests: XCTestCase {
func testEnglishLocalizationFileShouldExist() {
XCTAssertTrue(LocalizationManifest.hasLocale("en"))
}
func testVietnameseLocalizationFileShouldExist() {
XCTAssertTrue(LocalizationManifest.hasLocale("vi"))
}
func testUnknownLocaleShouldNotExist() {
XCTAssertFalse(LocalizationManifest.hasLocale("zz"))
}
}