Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
update readme spacing (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstivanov committed Oct 26, 2020
1 parent 69e02d3 commit 99aa927
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -36,6 +36,8 @@ Running mockgen
---------------

`mockgen` has two modes of operation: source and reflect.

#### Source mode
Source mode generates mock interfaces from a source file.
It is enabled by using the -source flag. Other flags that
may be useful in this mode are -imports and -aux_files.
Expand All @@ -46,6 +48,7 @@ Example:
mockgen -source=foo.go [other options]
```

#### Reflect mode
Reflect mode generates mock interfaces by building a program
that uses reflection to understand interfaces. It is enabled
by passing two non-flag arguments: an import path, and a
Expand All @@ -62,6 +65,7 @@ mockgen database/sql/driver Conn,Driver
mockgen . Conn,Driver
```

#### Flags
The `mockgen` command is used to generate source code for a mock
class given a Go source file containing interfaces to be mocked.
It supports the following flags:
Expand Down

0 comments on commit 99aa927

Please sign in to comment.