27 lines
826 B
Go
27 lines
826 B
Go
package tests
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
NonExistingIntegerID = 9999
|
|
NonExistingStringID = "n0n-3x1st1ng-1d"
|
|
DefaultFileName = "test.txt"
|
|
DefaultFileContent = "Hello, Codemoon!"
|
|
DefaultDirectoryName = "test/"
|
|
FileNameWithAbsolutePath = "/test.txt"
|
|
DefaultEnvironmentIDAsInteger = 0
|
|
DefaultEnvironmentIDAsString = "0"
|
|
AnotherEnvironmentIDAsInteger = 42
|
|
AnotherEnvironmentIDAsString = "42"
|
|
DefaultJobID = DefaultEnvironmentIDAsString
|
|
AnotherJobID = AnotherEnvironmentIDAsString
|
|
DefaultRunnerID = DefaultJobID
|
|
AnotherRunnerID = AnotherJobID
|
|
DefaultExecutionID = "s0m3-3x3cu710n-1d"
|
|
DefaultMockID = "m0ck-1d"
|
|
)
|
|
|
|
var (
|
|
ErrDefault = errors.New("an error occurred")
|
|
)
|