Merge "Add preparer for test with variables"
This commit is contained in:
commit
8c004c6c04
|
@ -24,11 +24,17 @@ import (
|
|||
)
|
||||
|
||||
func init() {
|
||||
PreDepsMutators(func(ctx RegisterMutatorsContext) {
|
||||
registerVariableBuildComponents(InitRegistrationContext)
|
||||
}
|
||||
|
||||
func registerVariableBuildComponents(ctx RegistrationContext) {
|
||||
ctx.PreDepsMutators(func(ctx RegisterMutatorsContext) {
|
||||
ctx.BottomUp("variable", VariableMutator).Parallel()
|
||||
})
|
||||
}
|
||||
|
||||
var PrepareForTestWithVariables = FixtureRegisterWithContext(registerVariableBuildComponents)
|
||||
|
||||
type variableProperties struct {
|
||||
Product_variables struct {
|
||||
Platform_sdk_version struct {
|
||||
|
|
Loading…
Reference in New Issue