aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/FitsInTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/FitsInTest.cpp')
-rw-r--r--tests/FitsInTest.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/FitsInTest.cpp b/tests/FitsInTest.cpp
index 6a46b67bed..5d21b8d347 100644
--- a/tests/FitsInTest.cpp
+++ b/tests/FitsInTest.cpp
@@ -14,6 +14,8 @@
#define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected)))
DEF_TEST(FitsIn, reporter) {
+ TEST(uint16_t, 257, int8_t, false);
+
TEST(int32_t, 1, int8_t, true);
TEST(int32_t, -1, int8_t, true);
TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true);