MockingKit lets you mock protocols and classes in Swift, for instance when unit testing or to mock functionality that is not yet implemented.
MockingKit lets you create mock implementations of any protocol or mock sub classes any open base class, after which you can call functions, register function results and inspect all recorded calls.
MockingKit doesn’t require any project configurations or build scripts, put any restrictions on your code or require you to structure it in any way. Just create a mock and you’re good to go.
With MockingKit, you can easily create a mock implementation of this protocol:
import MockingKit
class MyMock: Mock, MyProtocol {
// You have to 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 then 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.0 // => 42
calls[0].arguments.1 // => "string"
calls[0].result // => "gnirts"
mock.hasCalled(\.doStuffRef) // => true
mock.hasCalled(\.doStuffRef, numberOfTimes: 1) // => true
mock.hasCalled(\.doStuffRef, numberOfTimes: 2) // => false
About MockingKit
MockingKit lets you mock protocols and classes in
Swift
, for instance when unit testing or to mock functionality that is not yet implemented.MockingKit lets you create mock implementations of any protocol or mock sub classes any open base class, after which you can
call
functions,register
function results andinspect
all recorded calls.MockingKit doesn’t require any project configurations or build scripts, put any restrictions on your code or require you to structure it in any way. Just create a mock and you’re good to go.
MockingKit supports
iOS 13
,macOS 10.15
,tvOS 13
andwatchOS 6
.Installation
MockingKit can be installed with the Swift Package Manager:
If you prefer to not have external dependencies, you can also just copy the source code into your app.
Getting started
The online documentation has a getting started guide guide to help you get started with MockingKit.
In short, MockingKit lets you mock any protocols and open classes. For instance, consider this simple protocol:
With MockingKit, you can easily create a mock implementation of this protocol:
You can then use the mock to
register
function results,call
functions andinspect
recorded calls.For more information, please see the online documentation and getting started guide.
Documentation
The online documentation has articles, code examples etc. that let you overview the various parts of the library.
Demo Application
The demo app lets you explore the library on iOS and macOS. To try it out, just open and run the
Demo
project.Support this library
I manage my various open-source projects in my free time and am really thankful for any help I can get from the community.
You can sponsor this project on GitHub Sponsors or get in touch for paid support.
Contact
Feel free to reach out if you have questions or if you want to contribute in any way:
License
MockingKit is available under the MIT license. See the LICENSE file for more info.