Unverified Commit 716e3656 authored by L. Jiang's avatar L. Jiang Committed by GitHub
Browse files

test: add test cases for HumanNumber (#9108)

parent 3b4424ff
......@@ -12,6 +12,9 @@ func TestHumanNumber(t *testing.T) {
testCases := []testCase{
{0, "0"},
{999, "999"},
{1000, "1K"},
{1001, "1K"},
{1000000, "1M"},
{125000000, "125M"},
{500500000, "500.50M"},
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment