Files
huangguo_server/web/service/advgroupser/advgroupser_test.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

22 lines
473 B
Go

package advgroupser
import "testing"
func TestFormatRatePercentage(t *testing.T) {
t.Run("formats decimal rate as percentage", func(t *testing.T) {
got := formatRatePercentage(0.1234)
want := "12.340%"
if got != want {
t.Fatalf("expected %s, got %s", want, got)
}
})
t.Run("formats zero as zero percentage", func(t *testing.T) {
got := formatRatePercentage(0)
want := "0.000%"
if got != want {
t.Fatalf("expected %s, got %s", want, got)
}
})
}