AK+Tests: Add a test for formatting numbers in base 10 units

Added a test case to TestNumberFormat to test the new base 10 formatting
capability
This commit is contained in:
Arda Cinar 2022-12-15 16:47:03 +03:00 committed by Sam Atkins
parent 0dbb1be81c
commit 0105600120

View file

@ -125,3 +125,11 @@ TEST_CASE(extremes_8byte)
warnln("(Skipping 8-byte-size_t test on 32-bit platform)");
}
}
TEST_CASE(base10_units)
{
EXPECT_EQ(human_readable_size(999, AK::HumanReadableBasedOn::Base10), "999 B");
EXPECT_EQ(human_readable_size(1024, AK::HumanReadableBasedOn::Base10), "1.0 KB");
EXPECT_EQ(human_readable_size(1100, AK::HumanReadableBasedOn::Base10), "1.1 KB");
EXPECT_EQ(human_readable_size(1000000, AK::HumanReadableBasedOn::Base10), "1.0 MB");
}