(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestGetClientInfo(t *testing.T) { |
| 12 | t.Parallel() |
| 13 | |
| 14 | info := mcp.GetClientInfo() |
| 15 | |
| 16 | assert.Equal(t, "coder/aibridge", info.Name) |
| 17 | assert.NotEmpty(t, info.Version) |
| 18 | // Version will either be a git revision, a semantic version, or a combination |
| 19 | assert.NotEqual(t, "", info.Version) |
| 20 | } |
nothing calls this directly
no test coverage detected