Files
pos-system/apps/app-client-base-swift/smoke-tests/Tests/AppClientBaseSwiftSmokeTests/LocalizationManifestTests.swift
2026-02-23 13:15:02 +00: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"))
}
}