(t *testing.T)
| 18 | ) |
| 19 | |
| 20 | func TestAdapterConformance_Mock(t *testing.T) { |
| 21 | adapter := mock.New(config.BackendConfig{ |
| 22 | Name: "mock-b", |
| 23 | Type: "mock", |
| 24 | TimeoutMS: 100, |
| 25 | Capabilities: []string{"chat"}, |
| 26 | Cost: config.CostConfig{Unit: 1}, |
| 27 | }) |
| 28 | assertAdapterConformance(t, adapter) |
| 29 | } |
| 30 | |
| 31 | func TestAdapterConformance_VLLM(t *testing.T) { |
| 32 | srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
nothing calls this directly
no test coverage detected