splash/Tests/SplashTests/Mocks/OutputFormatMock.swift

17 lines
275 B
Swift
Raw Normal View History

2018-08-24 18:42:07 +02:00
/**
* 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
}
}