diff options
Diffstat (limited to 'xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp')
-rw-r--r-- | xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp b/xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp index 2864c842ad..077fb54e93 100644 --- a/xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp +++ b/xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp @@ -7,9 +7,12 @@ #include "xfa/fde/css/cfde_cssvaluelistparser.h" #include "testing/gtest/include/gtest/gtest.h" +#include "testing/test_support.h" #include "third_party/base/ptr_util.h" -TEST(CFDE_CSSValueListParser, rgb_short) { +class CFDE_CSSValueListParserTest : public pdfium::FPDF_Test {}; + +TEST_F(CFDE_CSSValueListParserTest, rgb_short) { FDE_CSSPrimitiveType type; const wchar_t* start; int32_t len; @@ -40,7 +43,7 @@ TEST(CFDE_CSSValueListParser, rgb_short) { EXPECT_FALSE(parser->NextValue(type, start, len)); } -TEST(CFDE_CSSValueListParser, number_parsing) { +TEST_F(CFDE_CSSValueListParserTest, number_parsing) { FDE_CSSPrimitiveType type; const wchar_t* start; int32_t len; @@ -82,7 +85,7 @@ TEST(CFDE_CSSValueListParser, number_parsing) { EXPECT_EQ(L"43a1.12.34", CFX_WideString(start, len)); } -TEST(CFDE_CSSValueListParser, string_parsing) { +TEST_F(CFDE_CSSValueListParserTest, string_parsing) { FDE_CSSPrimitiveType type; const wchar_t* start; int32_t len; @@ -105,7 +108,7 @@ TEST(CFDE_CSSValueListParser, string_parsing) { EXPECT_EQ(L"standalone", CFX_WideString(start, len)); } -TEST(CFDE_CSSValueListParser, multiparsing) { +TEST_F(CFDE_CSSValueListParserTest, multiparsing) { FDE_CSSPrimitiveType type; const wchar_t* start; int32_t len; |