Files
divkit/client/ios/DivKitSnapshotTests/JsonFile.swift
T
pkurchatov 6062b09627 Migrated snapshot tests to Swift 6
commit_hash:eb70a7b1d901646147db89954bd883db9baf167b
2024-12-21 02:02:39 +03:00

19 lines
418 B
Swift

struct JsonFile: CustomStringConvertible {
let absolutePath: String
let relativePath: String
var subdirectory: String {
let index = relativePath.lastIndex(of: "/")!
return String(relativePath[...index])
}
var name: String {
let index = relativePath.lastIndex(of: "/")!
return String(relativePath[relativePath.index(after: index)...])
}
var description: String {
relativePath
}
}