| 614 | } |
| 615 | |
| 616 | type fakeApp struct { |
| 617 | starts chan appStartRequest |
| 618 | closes chan errorResult |
| 619 | closed bool |
| 620 | started bool |
| 621 | } |
| 622 | |
| 623 | func (f *fakeApp) Close() error { |
| 624 | if f.closes == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected