forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_app_files_repository.go
58 lines (50 loc) · 1.6 KB
/
fake_app_files_repository.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// This file was generated by counterfeiter
package fakes
import (
. "github.com/cloudfoundry/cli/cf/api/app_files"
"sync"
)
type FakeAppFilesRepository struct {
ListFilesStub func(appGuid string, instance int, path string) (files string, apiErr error)
listFilesMutex sync.RWMutex
listFilesArgsForCall []struct {
appGuid string
instance int
path string
}
listFilesReturns struct {
result1 string
result2 error
}
}
func (fake *FakeAppFilesRepository) ListFiles(appGuid string, instance int, path string) (files string, apiErr error) {
fake.listFilesMutex.Lock()
defer fake.listFilesMutex.Unlock()
fake.listFilesArgsForCall = append(fake.listFilesArgsForCall, struct {
appGuid string
instance int
path string
}{appGuid, instance, path})
if fake.ListFilesStub != nil {
return fake.ListFilesStub(appGuid, instance, path)
} else {
return fake.listFilesReturns.result1, fake.listFilesReturns.result2
}
}
func (fake *FakeAppFilesRepository) ListFilesCallCount() int {
fake.listFilesMutex.RLock()
defer fake.listFilesMutex.RUnlock()
return len(fake.listFilesArgsForCall)
}
func (fake *FakeAppFilesRepository) ListFilesArgsForCall(i int) (string, int, string) {
fake.listFilesMutex.RLock()
defer fake.listFilesMutex.RUnlock()
return fake.listFilesArgsForCall[i].appGuid, fake.listFilesArgsForCall[i].instance, fake.listFilesArgsForCall[i].path
}
func (fake *FakeAppFilesRepository) ListFilesReturns(result1 string, result2 error) {
fake.listFilesReturns = struct {
result1 string
result2 error
}{result1, result2}
}
var _ AppFilesRepository = new(FakeAppFilesRepository)