| 41 | } |
| 42 | |
| 43 | type TestFakeGitlabRepo struct { |
| 44 | common.Scope |
| 45 | GitlabId int `json:"gitlabId" mapstructure:"gitlabId" gorm:"primaryKey"` |
| 46 | CreatedDate *time.Time `json:"createdDate" mapstructure:"-"` |
| 47 | UpdatedDate *time.Time `json:"updatedDate" mapstructure:"-"` |
| 48 | } |
| 49 | |
| 50 | func (t TestFakeGitlabRepo) ScopeId() string { |
| 51 | return fmt.Sprintf("%d", t.GitlabId) |
nothing calls this directly
no outgoing calls
no test coverage detected