1# Pseudo-Localization Testing for UI Mirroring 2 3## Application scenario 4 5The pseudo-localization testing for UI mirroring aims to check whether the text reading direction is correct. In some languages, the text is not read from left to right. For example, in Arabic, text is read from right to left. 6 7## Test Process 8 91. Switch to the target locale for pseudo-localization testing, for example, **ar-XB**. 10 11 You can switch the locale through the code (system permission required): 12 ```ts 13 import { i18n } from '@kit.LocalizationKit'; 14 i18n.System.setSystemLanguage('ar-XB') 15 ``` 16 172. Traverse the applications to be tested. 18 19## **Test Item** 20 211. Check whether the UI layout, text direction, and UI control logic comply with the reading habit of the target locale. For details, see [UI Mirroring](i18n-ui-design.md#ui-mirroring). 22 232. Check whether related functions are normal. 24