type RunError struct {
ExitCode int Cmd string// CombinedOutput is intentional since when something goes wrong, it usually// makes more sense to see the interweaved stdout/stderr since thats how they// appear in a shell.
CombinedOutput string
}
type Stack struct {
// contains filtered or unexported fields
}
Stack is a lifo queue used to easily manage resources that need to be torn
down by harnesses. It is a LIFO queue, so the first item added is the last
item torn down.