mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 07:32:52 +00:00
AK: Allow setting both width and precision when formatting a string
This commit is contained in:
parent
df5fa8aa39
commit
06ddfcde89
Notes:
sideshowbarker
2024-07-18 22:57:59 +09:00
Author: https://github.com/trflynn89
Commit: 06ddfcde89
Pull-request: https://github.com/SerenityOS/serenity/pull/8843
2 changed files with 3 additions and 2 deletions
|
@ -125,6 +125,9 @@ TEST_CASE(complex_string_specifiers)
|
|||
EXPECT_EQ(String::formatted("{:9}", "abcd"), "abcd ");
|
||||
EXPECT_EQ(String::formatted("{:>9}", "abcd"), " abcd");
|
||||
EXPECT_EQ(String::formatted("{:^9}", "abcd"), " abcd ");
|
||||
EXPECT_EQ(String::formatted("{:4.6}", "a"), "a ");
|
||||
EXPECT_EQ(String::formatted("{:4.6}", "abcdef"), "abcdef");
|
||||
EXPECT_EQ(String::formatted("{:4.6}", "abcdefghi"), "abcdef");
|
||||
}
|
||||
|
||||
TEST_CASE(cast_integer_to_character)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue