mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:37:35 +00:00
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:
parent
0dbb1be81c
commit
0105600120
1 changed files with 8 additions and 0 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue