Skip to content

Commit ec6b902

Browse files
committed
Update documentation
1 parent 4fc27b8 commit ec6b902

File tree

2 files changed

+10
-15
lines changed

2 files changed

+10
-15
lines changed

README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# MockingKit
1414

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.
15+
MockingKit is a mocking library for Swift that lets you create mocks 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.
1616

1717
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.
1818

@@ -30,11 +30,15 @@ https://github.com/danielsaidi/MockingKit.git
3030

3131

3232

33-
## Getting started
33+
## Support My Work
34+
35+
Maintaining my various [open-source tools][OpenSource] takes significant time and effort. You can [become a sponsor][Sponsors] to help me dedicate more time to creating, maintaining, and improving these projects. Every contribution, no matter the size, makes a real difference in keeping these tools free and actively developed. Thank you for considering!
36+
3437

35-
MockingKit lets you create mocks of any protocol or open class.
3638

37-
For instance, consider this simple protocol:
39+
## Getting started
40+
41+
MockingKit lets you mock any protocol or open class. For instance, consider this simple protocol:
3842

3943
```swift
4044
protocol MyProtocol {
@@ -95,15 +99,6 @@ The `Demo` folder has an app that lets you explore the library and see how its m
9599

96100

97101

98-
## Support my work
99-
100-
You can [sponsor me][Sponsors] on GitHub Sponsors or [reach out][Email] for paid support, to help support my [open-source projects][OpenSource].
101-
102-
Your support makes it possible for me to put more work into these projects and make them the best they can be.
103-
104-
105-
106-
107102
## Contact
108103

109104
Feel free to reach out if you have questions or if you want to contribute in any way:

Sources/MockingKit/MockingKit.docc/MockingKit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ MockingKit is a Swift SDK that lets you easily mock protocols and classes in `Sw
88

99
![MockingKit logo](Logo.png)
1010

11-
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.
11+
MockingKit is a mocking library for Swift that lets you create mocks 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.
1212

13-
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.
13+
MockingKit automatically records all method calls, to let you verify that your code behaves as you expect. You can also register register dynamic function results to control your test outcome.
1414

1515
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.
1616

0 commit comments

Comments
 (0)