(t *testing.T)
| 332 | } |
| 333 | |
| 334 | func TestBuildInstructionsEmpty(t *testing.T) { |
| 335 | if got := BuildInstructions(nil, nil); got != "" { |
| 336 | t.Fatalf("got = %q, want empty", got) |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | func TestBuildInstructionsIncludesNameAndDescription(t *testing.T) { |
| 341 | tools := []official.Tool{ |
nothing calls this directly
no test coverage detected