2020-12-09 15:31:34 +00:00
|
|
|
package mocks
|
|
|
|
|
|
|
|
type MockBuild struct {
|
2021-11-25 14:07:50 +00:00
|
|
|
Release bool
|
|
|
|
UsageReporting bool
|
2020-12-09 15:31:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m MockBuild) IsRelease() bool {
|
|
|
|
return m.Release
|
|
|
|
}
|
2021-11-25 14:07:50 +00:00
|
|
|
|
|
|
|
func (m MockBuild) IsUsageReportingEnabled() bool {
|
|
|
|
return m.UsageReporting
|
|
|
|
}
|