選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

14 行
349 B

  1. package model
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/require"
  5. )
  6. func TestGetDefaultVendorIconReturnsKnownIconAndEmptyFallback(t *testing.T) {
  7. require.Equal(t, "OpenAI", getDefaultVendorIcon("OpenAI"))
  8. require.Equal(t, "Claude.Color", getDefaultVendorIcon("Anthropic"))
  9. require.Equal(t, "", getDefaultVendorIcon("Unknown Vendor"))
  10. }