github.com/docker/compose-on-kubernetes@v0.5.0/internal/controller/testcase.go (about)

     1  package controller
     2  
     3  import (
     4  	"github.com/docker/compose-on-kubernetes/api/compose/latest"
     5  	"github.com/docker/compose-on-kubernetes/internal/stackresources"
     6  )
     7  
     8  // TestCase is a serializable type used to combine a stack and its children for a record & replay test scenario
     9  type TestCase struct {
    10  	Stack    *latest.Stack
    11  	Children *stackresources.StackState
    12  }