1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // FontAutoTest.swift
- // KdanAuto
- //
- // Created by 朱东勇 on 2022/11/25.
- //
- import Foundation
- class FontAutoTest : AutoTest {
- //
- // override func type() -> String {
- // return "PDFConvert_Font_Auto_Test"
- // }
-
- override func name() -> String {
- return _name
- }
-
- override func keys() -> NSArray {
- return ["字体名称", "字体大小", "字体样式", "快照"]
- }
-
- override class func shared() -> AutoTest? {
- return FontAutoTest()
- }
-
-
- // Auto Test refrence Check File
- override func autoTest(_ complention:@escaping (_ object:AutoTest, _ report:NSAttributedString?) -> ()) {
- clearCacheFiles()
-
- _status = .Process
-
-
- _status = .Finished
-
- complention(self, reportString)
- }
-
- }
|