(name string, args ...string)
| 11 | //go:generate mockgen -copyright_file=../../copyright_header -destination=../mocks/command_command_creator.go -package=mocks -mock_names Creator=CommandCreator . Creator |
| 12 | type Creator interface { |
| 13 | Create(name string, args ...string) Command |
| 14 | } |
| 15 | |
| 16 | // Command contains 2 sets of methods. |
no outgoing calls