mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
10 lines
252 B
Swift
10 lines
252 B
Swift
import Foundation
|
|
import XCTest
|
|
|
|
extension XCTestCase {
|
|
var testResourcesPath: String {
|
|
return URL(fileURLWithPath: #file).deletingLastPathComponent()
|
|
.appendingPathComponent("Resources").path.absolutePathStandardized()
|
|
}
|
|
}
|