26 lines
497 B
Objective-C
26 lines
497 B
Objective-C
//
|
|
// XPTextLayoutTest.h
|
|
// YuMi
|
|
//
|
|
// Created by Assistant on 2025/8/14.
|
|
// Copyright © 2025 YuMi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPTextLayoutTest : NSObject
|
|
|
|
+ (void)testArabicTextLayout;
|
|
+ (void)testMixedTextLayout;
|
|
+ (void)testLongArabicTextLayout;
|
|
+ (void)testChineseTextLayout;
|
|
+ (void)testEnglishTextLayout;
|
|
+ (void)testTurkishTextLayout;
|
|
+ (void)testVeryLongTextLayout;
|
|
+ (void)runAllTests;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END |