mas/MasKitTests/Mocks/MockOpenSystemCommand.swift

28 lines
542 B
Swift
Raw Normal View History

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