MockingKit is a Swift SDK that lets you easily mock protocols and classes in `Swift`.
MockingKit is a Swift SDK that lets you create mock versions of any protocol or class. This can be used to mock dependencies in unit tests, and to fake not yet implemented features in your apps.
MockingKit automatically records every method call, to let you verify that your code behaves as you expect. You can also register register dynamic function results to control your test outcome.
MockingKit doesn’t require any setup or build scripts, and puts no restrictions on your code or architecture. Just create a mock, set up how you want to use and inspect it, and you’re good to go.
MockingKit can be installed with the Swift Package Manager:
https://github.com/danielsaidi/MockingKit.git
MockingKit lets you create mocks of any protocol or open class.
For instance, consider this simple protocol:
protocol MyProtocol {
func doStuff(int: Int, string: String) -> String
}
With MockingKit, you can easily create a mock implementation of this protocol:
import MockingKit
class MyMock: Mock, MyProtocol {
// Define a lazy reference for each function you want to mock
lazy var doStuffRef = MockReference(doStuff)
// Functions must then call the reference to be recorded
func doStuff(int: Int, string: String) -> String {
call(doStuffRef, args: (int, string))
}
}
You can now use the mock to register
function results, call
functions and inspect
recorded calls.
// Create a mock instance
let mock = MyMock()
// Register a result to be returned by doStuff
mock.registerResult(for: mock.doStuffRef) { args in String(args.1.reversed()) }
// Calling doStuff will now return the pre-registered result
let result = mock.doStuff(int: 42, string: "string") // => "gnirts"
// You can now inspect calls made to doStuff
let calls = mock.calls(to: \.doStuffRef) // => 1 item
calls[0].arguments // => (42, "string")
calls[0].result // => "gnirts"
mock.hasCalled(\.doStuffRef) // => true
See the online getting started guide for more information.
The online documentation has more information, articles, code examples, etc.
The Demo
folder has an app that lets you explore the library and see how its mocks behave.
You can sponsor me on GitHub Sponsors or reach out for paid support, to help support my open-source projects.
Your support makes it possible for me to put more work into these projects and make them the best they can be.
Feel free to reach out if you have questions or if you want to contribute in any way:
MockingKit is available under the MIT license. See the LICENSE file for more info.