TestSpec_PublicAPI_GetAllEngineSecretNames validates the documented helper function. Spec section: "// Get all secret names for all engines"
(t *testing.T)
| 100 | // TestSpec_PublicAPI_GetAllEngineSecretNames validates the documented helper function. |
| 101 | // Spec section: "// Get all secret names for all engines" |
| 102 | func TestSpec_PublicAPI_GetAllEngineSecretNames(t *testing.T) { |
| 103 | secrets := constants.GetAllEngineSecretNames() |
| 104 | require.NotEmpty(t, secrets, "GetAllEngineSecretNames should return non-empty slice") |
| 105 | |
| 106 | // Spec documents COPILOT_GITHUB_TOKEN as one of the secrets |
| 107 | assert.Contains(t, secrets, "COPILOT_GITHUB_TOKEN", |
| 108 | "GetAllEngineSecretNames should include COPILOT_GITHUB_TOKEN as documented") |
| 109 | } |
| 110 | |
| 111 | // TestSpec_SemanticTypes_StringAndIsValid validates the documented String() and IsValid() |
| 112 | // methods on semantic types that implement them. |
nothing calls this directly
no test coverage detected