12345678910111213141516171819202122232425262728 |
- import Foundation
- class SpecialCharacterAutoTest : ChineseStringAutoTest {
-
- override func type() -> String {
- return "PDFConvert_SpecialCharacter_Auto_Test"
- }
-
- override func name() -> String {
- return "特殊字符转换准确率测试"
- }
-
- static var scSharedInstance = SpecialCharacterAutoTest()
- override class func shared() -> AutoTest? {
- return scSharedInstance
- }
-
- override func autoTest() {
- super.autoTest()
- }
- }
|