17 lines
275 B
Swift
17 lines
275 B
Swift
|
/**
|
||
|
* Splash
|
||
|
* Copyright (c) John Sundell 2018
|
||
|
* MIT license - see LICENSE.md
|
||
|
*/
|
||
|
|
||
|
import Foundation
|
||
|
import Splash
|
||
|
|
||
|
struct OutputFormatMock: OutputFormat {
|
||
|
let builder: OutputBuilderMock
|
||
|
|
||
|
func makeBuilder() -> OutputBuilderMock {
|
||
|
return builder
|
||
|
}
|
||
|
}
|