mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
14ce92b4fb
Co-authored-by: Johannes Dillmann <j.dillmann@sap.com> Co-authored-by: Ralf Pannemans <ralf.pannemans@sap.com>
20 lines
328 B
Go
20 lines
328 B
Go
//go:build !release
|
|
// +build !release
|
|
|
|
package cnbutils
|
|
|
|
import (
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
|
)
|
|
|
|
type MockUtils struct {
|
|
*mock.ExecMockRunner
|
|
*mock.FilesMock
|
|
*mock.DownloadMock
|
|
}
|
|
|
|
func (c *MockUtils) GetFileUtils() piperutils.FileUtils {
|
|
return c.FilesMock
|
|
}
|