(t *testing.T)
| 596 | } |
| 597 | |
| 598 | func TestNewProject_nonTTY(t *testing.T) { |
| 599 | client := NewTestClient() |
| 600 | _, err := client.NewProject(false, &Owner{}, 0, false) |
| 601 | assert.EqualError(t, err, "project number is required when not running interactively") |
| 602 | } |
| 603 | |
| 604 | func TestNewOwner_nonTTY(t *testing.T) { |
| 605 | client := NewTestClient() |
nothing calls this directly
no test coverage detected