======================================== Help Content Tests ========================================
(t *testing.T)
| 182 | // ======================================== |
| 183 | |
| 184 | func TestGetHelpContent_NotEmpty(t *testing.T) { |
| 185 | help := getHelpContent() |
| 186 | if len(help) == 0 { |
| 187 | t.Error("getHelpContent() should return non-empty string") |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | func TestGetHelpContent_ContainsBasics(t *testing.T) { |
| 192 | help := getHelpContent() |
nothing calls this directly
no test coverage detected