Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
@@ -0,0 +1,21 @@
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)
}
})
}