Skip to content

Commit

Permalink
Remove mockFileManager
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari committed Oct 28, 2022
1 parent 2d59cfd commit 7899de8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Tests/ApolloCodegenTests/ApolloCodegenTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import Nimble
class ApolloCodegenTests: XCTestCase {
private var directoryURL: URL!
private var testFileManager: ApolloFileManager!
private var mockFileManager: MockApolloFileManager!

override func setUpWithError() throws {
try super.setUpWithError()
Expand All @@ -16,14 +15,12 @@ class ApolloCodegenTests: XCTestCase {
.appendingPathComponent(UUID().uuidString)
testFileManager = ApolloFileManager(base: FileManager.default)
try testFileManager.createDirectoryIfNeeded(atPath: directoryURL.path)
mockFileManager = MockApolloFileManager(strict: false)
}

override func tearDownWithError() throws {
try cleanTestOutput()
directoryURL = nil
testFileManager = nil
mockFileManager = nil

try super.tearDownWithError()
}
Expand Down

0 comments on commit 7899de8

Please sign in to comment.