You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package tea
|
|
|
|
// xchain is a chain of xnodes. an xchain is an execution plan for executing a
|
|
// sequence of tests. somwhat ironically the nodes are actually in a slice.
|
|
type xchain struct {
|
|
xnodes []*xnode
|
|
}
|