You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MockingKit is a Swift SDK that lets you easily mock protocols and classes.
15
+
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.
17
16
18
-
MockingKit lets you create mocks of any protocol or class, after which you can `call` functions, `register` dynamic function results, automatically `record` method invocations, and `inspect` all recorded calls.
17
+
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.
19
18
20
-
MockingKit doesn't require any setup or build scripts, and puts no restrictions on your code or architecture. Just create a mock and you're good to go.
19
+
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.
21
20
22
21
23
22
@@ -92,7 +91,7 @@ The online [documentation][Documentation] has more information, articles, code e
92
91
93
92
## Demo Application
94
93
95
-
The `Demo` folder has an app that lets you explore the library and see how mocks behave.
94
+
The `Demo` folder has an app that lets you explore the library and see how its mocks behave.
96
95
97
96
98
97
@@ -110,9 +109,9 @@ Your support makes it possible for me to put more work into these projects and m
110
109
Feel free to reach out if you have questions or if you want to contribute in any way:
0 commit comments