mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
27 lines
544 B
Swift
27 lines
544 B
Swift
//
|
|
// MockOpenSystemCommand.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 1/4/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@testable import mas
|
|
|
|
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()
|
|
|
|
func run(arguments: String...) throws {
|
|
self.arguments = arguments
|
|
}
|
|
}
|