(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestCompletionScreen_NoBranch(t *testing.T) { |
| 24 | cs := NewCompletionScreen() |
| 25 | cs.Configure("auth", 8, 8, "", 0, false, 0, nil) |
| 26 | |
| 27 | if cs.HasBranch() { |
| 28 | t.Error("expected HasBranch() to be false when branch is empty") |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | func TestCompletionScreen_RenderHeader(t *testing.T) { |
| 33 | cs := NewCompletionScreen() |
nothing calls this directly
no test coverage detected