| 6 | namespace bdn::ui |
| 7 | { |
| 8 | TEST(Color, InitWithStringWithAlpha) |
| 9 | { |
| 10 | Color c("#0080FFAB"); |
| 11 | |
| 12 | auto x = std::array<uint8_t, 4>{0x00, 0x80, 0xFF, 0xAB}; |
| 13 | |
| 14 | EXPECT_EQ(c.asIntArray<uint8_t>(), x); |
| 15 | } |
| 16 | |
| 17 | TEST(Color, InitWithString) |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected