mas/Tests/masTests/ExternalCommands/OpenSystemCommandMock.swift

28 lines
544 B
Swift
Raw Normal View History

2019-01-05 00:54:00 +00:00
//
// OpenSystemCommandMock.swift
// masTests
2019-01-05 00:54:00 +00:00
//
// Created by Ben Chatelain on 1/4/19.
// Copyright © 2019 mas-cli. All rights reserved.
//
import Foundation
@testable import mas
2019-01-05 00:54:00 +00:00
class OpenSystemCommandMock: ExternalCommand {
2019-01-05 00:54:00 +00:00
// Stub out protocol logic
var succeeded = true
var arguments: [String] = []
2019-01-05 00:54:00 +00:00
// unused
var binaryPath = "/dev/null"
var process = Process()
var stdoutPipe = Pipe()
var stderrPipe = Pipe()
func run(arguments: String...) throws {
self.arguments = arguments
}
}