14 lines
243 B
Go
14 lines
243 B
Go
|
package triton
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func testConfig(t *testing.T) Config {
|
||
|
return Config{
|
||
|
AccessConfig: testAccessConfig(t),
|
||
|
SourceMachineConfig: testSourceMachineConfig(t),
|
||
|
TargetImageConfig: testTargetImageConfig(t),
|
||
|
}
|
||
|
}
|