createBasicProgram returns a program of an unspecified type which returns a non-zero value when executed.
(tb testing.TB)
| 190 | // createBasicProgram returns a program of an unspecified type which returns |
| 191 | // a non-zero value when executed. |
| 192 | func createBasicProgram(tb testing.TB) *Program { |
| 193 | return mustNewProgram(tb, basicProgramSpec, nil) |
| 194 | } |
| 195 | |
| 196 | func newCollection(tb testing.TB, spec *CollectionSpec, opts *CollectionOptions) (*Collection, error) { |
| 197 | tb.Helper() |
no test coverage detected
searching dependent graphs…