(req *CreateRequest)
| 140 | } |
| 141 | |
| 142 | func (p *testPlugin) Create(req *CreateRequest) error { |
| 143 | p.create++ |
| 144 | p.volumes = append(p.volumes, req.Name) |
| 145 | return nil |
| 146 | } |
| 147 | |
| 148 | func (p *testPlugin) Get(req *GetRequest) (*GetResponse, error) { |
| 149 | p.get++ |
nothing calls this directly
no outgoing calls
no test coverage detected