@@ -14,10 +14,11 @@ Table of Contents
14
14
* [ Docker] ( #docker )
15
15
* [ Homebrew] ( #homebrew )
16
16
* [ go install] ( #go-install )
17
- - [ Requirement] ( #requirement )
18
17
- [ Examples] ( #examples )
19
18
+ [ Simplest case] ( #simplest-case )
19
+ + [ Function type case] ( #function-type-case )
20
20
+ [ Next level case] ( #next-level-case )
21
+ + [ Note] ( #note )
21
22
- [ Return Value Provider Functions] ( #return-value-provider-functions )
22
23
+ [ Requirements] ( #requirements )
23
24
+ [ Notes] ( #notes )
@@ -42,8 +43,6 @@ Visit the [releases page](https://github.com/vektra/mockery/releases) to downloa
42
43
43
44
Use the [ Docker image] ( https://hub.docker.com/r/vektra/mockery )
44
45
45
- Get mockery verion:
46
-
47
46
docker pull vektra/mockery
48
47
49
48
Generate all the mocks for your project:
@@ -65,11 +64,6 @@ Alternatively, you can use the go install method to compile the project using yo
65
64
66
65
go install github.com/vektra/mockery/v2@latest
67
66
68
- Requirement
69
- -----------
70
-
71
- For mockery to correctly generate mocks, the command has to be run on a module (i.e. your project has to have a go.mod file)
72
-
73
67
Examples
74
68
--------
75
69
@@ -234,6 +228,10 @@ func main() {
234
228
}
235
229
```
236
230
231
+ #### Note
232
+
233
+ For mockery to correctly generate mocks, the command has to be run on a module (i.e. your project has to have a go.mod file)
234
+
237
235
238
236
Return Value Provider Functions
239
237
--------------------------------
@@ -371,7 +369,6 @@ The following descriptions provide additional elaboration on a few common parame
371
369
| ` --print ` | Use ` mockery --print ` to have the resulting code printed out instead of written to disk. |
372
370
| ` --exported ` | Use ` mockery --exported ` to generate public mocks for private interfaces. |
373
371
| ` --with-expecter ` | Use ` mockery --with-expecter ` to generate ` EXPECT() ` methods for your mocks. This is the preferred way to setup your mocks. |
374
- | ` --log-level ` | Use ` --log-level ` to generate useful logs. Possible values are ` trace ` , ` debug ` , ` info ` , ` warn ` , ` error ` , ` fatal ` , ` panic ` |
375
372
376
373
Mocking interfaces in ` main `
377
374
----------------------------
0 commit comments