Home
last modified time | relevance | path

Searched refs:TEST (Results 1 – 25 of 3656) sorted by relevance

12345678910>>...147

/external/nanopb-c/tests/alltypes/
Ddecode_alltypes.c13 #define TEST(x) if (!(x)) { \ macro
34 TEST(alltypes.req_int32 == -1001); in check_alltypes()
35 TEST(alltypes.req_int64 == -1002); in check_alltypes()
36 TEST(alltypes.req_uint32 == 1003); in check_alltypes()
37 TEST(alltypes.req_uint64 == 1004); in check_alltypes()
38 TEST(alltypes.req_sint32 == -1005); in check_alltypes()
39 TEST(alltypes.req_sint64 == -1006); in check_alltypes()
40 TEST(alltypes.req_bool == true); in check_alltypes()
42 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
43 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/grpc-grpc/third_party/nanopb/tests/alltypes/
Ddecode_alltypes.c13 #define TEST(x) if (!(x)) { \ macro
32 TEST(alltypes.req_int32 == -1001); in check_alltypes()
33 TEST(alltypes.req_int64 == -1002); in check_alltypes()
34 TEST(alltypes.req_uint32 == 1003); in check_alltypes()
35 TEST(alltypes.req_uint64 == 1004); in check_alltypes()
36 TEST(alltypes.req_sint32 == -1005); in check_alltypes()
37 TEST(alltypes.req_sint64 == -1006); in check_alltypes()
38 TEST(alltypes.req_bool == true); in check_alltypes()
40 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
41 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/jemalloc_new/test/unit/
Dmalloc_io.c112 #define TEST(expected_str_untruncated, ...) do { \ in TEST_BEGIN() macro
122 TEST("012346789", "012346789"); in TEST_BEGIN()
123 TEST("a0123b", "a%sb", "0123"); in TEST_BEGIN()
124 TEST("a01234567", "a%s%s", "0123", "4567"); in TEST_BEGIN()
125 TEST("a0123 ", "a%-6s", "0123"); in TEST_BEGIN()
126 TEST("a 0123", "a%6s", "0123"); in TEST_BEGIN()
127 TEST("a 012", "a%6.3s", "0123"); in TEST_BEGIN()
128 TEST("a 012", "a%*.*s", 6, 3, "0123"); in TEST_BEGIN()
129 TEST("a 123b", "a% db", 123); in TEST_BEGIN()
130 TEST("a123b", "a%-db", 123); in TEST_BEGIN()
[all …]
/external/grpc-grpc/third_party/nanopb/tests/backwards_compatibility/
Ddecode_legacy.c16 #define TEST(x) if (!(x)) { \ macro
30 TEST(alltypes.req_int32 == -1001); in check_alltypes()
31 TEST(alltypes.req_int64 == -1002); in check_alltypes()
32 TEST(alltypes.req_uint32 == 1003); in check_alltypes()
33 TEST(alltypes.req_uint64 == 1004); in check_alltypes()
34 TEST(alltypes.req_sint32 == -1005); in check_alltypes()
35 TEST(alltypes.req_sint64 == -1006); in check_alltypes()
36 TEST(alltypes.req_bool == true); in check_alltypes()
38 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
39 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/nanopb-c/tests/backwards_compatibility/
Ddecode_legacy.c16 #define TEST(x) if (!(x)) { \ macro
30 TEST(alltypes.req_int32 == -1001); in check_alltypes()
31 TEST(alltypes.req_int64 == -1002); in check_alltypes()
32 TEST(alltypes.req_uint32 == 1003); in check_alltypes()
33 TEST(alltypes.req_uint64 == 1004); in check_alltypes()
34 TEST(alltypes.req_sint32 == -1005); in check_alltypes()
35 TEST(alltypes.req_sint64 == -1006); in check_alltypes()
36 TEST(alltypes.req_bool == true); in check_alltypes()
38 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
39 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/nanopb-c/tests/without_64bit/
Ddecode_alltypes.c13 #define TEST(x) if (!(x)) { \ macro
32 TEST(alltypes.req_int32 == -1001); in check_alltypes()
33 TEST(alltypes.req_uint32 == 1003); in check_alltypes()
34 TEST(alltypes.req_sint32 == -1005); in check_alltypes()
35 TEST(alltypes.req_bool == true); in check_alltypes()
37 TEST(alltypes.req_fixed32 == 1008); in check_alltypes()
38 TEST(alltypes.req_sfixed32 == -1009); in check_alltypes()
39 TEST(alltypes.req_float == 1010.0f); in check_alltypes()
41 TEST(strcmp(alltypes.req_string, "1014") == 0); in check_alltypes()
42 TEST(alltypes.req_bytes.size == 4); in check_alltypes()
[all …]
/external/jemalloc/test/unit/
Dutil.c167 #define TEST(expected_str_untruncated, ...) do { \ in TEST_BEGIN() macro
177 TEST("012346789", "012346789"); in TEST_BEGIN()
178 TEST("a0123b", "a%sb", "0123"); in TEST_BEGIN()
179 TEST("a01234567", "a%s%s", "0123", "4567"); in TEST_BEGIN()
180 TEST("a0123 ", "a%-6s", "0123"); in TEST_BEGIN()
181 TEST("a 0123", "a%6s", "0123"); in TEST_BEGIN()
182 TEST("a 012", "a%6.3s", "0123"); in TEST_BEGIN()
183 TEST("a 012", "a%*.*s", 6, 3, "0123"); in TEST_BEGIN()
184 TEST("a 123b", "a% db", 123); in TEST_BEGIN()
185 TEST("a123b", "a%-db", 123); in TEST_BEGIN()
[all …]
/external/nanopb-c/tests/alltypes_proto3/
Ddecode_alltypes.c13 #define TEST(x) if (!(x)) { \ macro
30TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0… in check_alltypes()
31TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
32TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] ==… in check_alltypes()
33TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] ==… in check_alltypes()
34TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] =… in check_alltypes()
35TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] =… in check_alltypes()
36TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false… in check_alltypes()
38TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0]… in check_alltypes()
39TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed3… in check_alltypes()
[all …]
/external/nanopb-c/tests/field_size_16_proto3/
Ddecode_alltypes.c13 #define TEST(x) if (!(x)) { \ macro
30TEST(alltypes.rep_int32_count == 5 && alltypes.rep_int32[4] == -2001 && alltypes.rep_int32[0] == 0… in check_alltypes()
31TEST(alltypes.rep_int64_count == 5 && alltypes.rep_int64[4] == -2002 && alltypes.rep_int64[0] == 0… in check_alltypes()
32TEST(alltypes.rep_uint32_count == 5 && alltypes.rep_uint32[4] == 2003 && alltypes.rep_uint32[0] ==… in check_alltypes()
33TEST(alltypes.rep_uint64_count == 5 && alltypes.rep_uint64[4] == 2004 && alltypes.rep_uint64[0] ==… in check_alltypes()
34TEST(alltypes.rep_sint32_count == 5 && alltypes.rep_sint32[4] == -2005 && alltypes.rep_sint32[0] =… in check_alltypes()
35TEST(alltypes.rep_sint64_count == 5 && alltypes.rep_sint64[4] == -2006 && alltypes.rep_sint64[0] =… in check_alltypes()
36TEST(alltypes.rep_bool_count == 5 && alltypes.rep_bool[4] == true && alltypes.rep_bool[0] == false… in check_alltypes()
38TEST(alltypes.rep_fixed32_count == 5 && alltypes.rep_fixed32[4] == 2008 && alltypes.rep_fixed32[0]… in check_alltypes()
39TEST(alltypes.rep_sfixed32_count == 5 && alltypes.rep_sfixed32[4] == -2009 && alltypes.rep_sfixed3… in check_alltypes()
[all …]
/external/grpc-grpc/third_party/nanopb/tests/alltypes_pointer/
Ddecode_alltypes_pointer.c8 #define TEST(x) if (!(x)) { \ macro
27 TEST(alltypes.req_int32 && *alltypes.req_int32 == -1001); in check_alltypes()
28 TEST(alltypes.req_int64 && *alltypes.req_int64 == -1002); in check_alltypes()
29 TEST(alltypes.req_uint32 && *alltypes.req_uint32 == 1003); in check_alltypes()
30 TEST(alltypes.req_uint64 && *alltypes.req_uint64 == 1004); in check_alltypes()
31 TEST(alltypes.req_sint32 && *alltypes.req_sint32 == -1005); in check_alltypes()
32 TEST(alltypes.req_sint64 && *alltypes.req_sint64 == -1006); in check_alltypes()
33 TEST(alltypes.req_bool && *alltypes.req_bool == true); in check_alltypes()
35 TEST(alltypes.req_fixed32 && *alltypes.req_fixed32 == 1008); in check_alltypes()
36 TEST(alltypes.req_sfixed32 && *alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/nanopb-c/tests/alltypes_pointer/
Ddecode_alltypes_pointer.c8 #define TEST(x) if (!(x)) { \ macro
27 TEST(alltypes.req_int32 && *alltypes.req_int32 == -1001); in check_alltypes()
28 TEST(alltypes.req_int64 && *alltypes.req_int64 == -1002); in check_alltypes()
29 TEST(alltypes.req_uint32 && *alltypes.req_uint32 == 1003); in check_alltypes()
30 TEST(alltypes.req_uint64 && *alltypes.req_uint64 == 1004); in check_alltypes()
31 TEST(alltypes.req_sint32 && *alltypes.req_sint32 == -1005); in check_alltypes()
32 TEST(alltypes.req_sint64 && *alltypes.req_sint64 == -1006); in check_alltypes()
33 TEST(alltypes.req_bool && *alltypes.req_bool == true); in check_alltypes()
35 TEST(alltypes.req_fixed32 && *alltypes.req_fixed32 == 1008); in check_alltypes()
36 TEST(alltypes.req_sfixed32 && *alltypes.req_sfixed32 == -1009); in check_alltypes()
[all …]
/external/skia/tests/
DFitsInTest.cpp14 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected))) macro
23 TEST(uint16_t, 257, int8_t, false); in DEF_TEST()
25 TEST(int32_t, 1, int8_t, true); in DEF_TEST()
26 TEST(int32_t, -1, int8_t, true); in DEF_TEST()
27 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true); in DEF_TEST()
28 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false); in DEF_TEST()
29 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true); in DEF_TEST()
30 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false); in DEF_TEST()
32 TEST(int32_t, 1, uint8_t, true); in DEF_TEST()
33 TEST(int32_t, -1, uint8_t, false); in DEF_TEST()
[all …]
/external/skqp/tests/
DFitsInTest.cpp14 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected))) macro
17 TEST(uint16_t, 257, int8_t, false); in DEF_TEST()
19 TEST(int32_t, 1, int8_t, true); in DEF_TEST()
20 TEST(int32_t, -1, int8_t, true); in DEF_TEST()
21 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true); in DEF_TEST()
22 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false); in DEF_TEST()
23 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true); in DEF_TEST()
24 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false); in DEF_TEST()
26 TEST(int32_t, 1, uint8_t, true); in DEF_TEST()
27 TEST(int32_t, -1, uint8_t, false); in DEF_TEST()
[all …]
/external/clang/unittests/AST/
DDeclPrinterTest.cpp185 TEST(DeclPrinter, TestTypedef1) { in TEST() function
193 TEST(DeclPrinter, TestTypedef2) { in TEST() function
201 TEST(DeclPrinter, TestTypedef3) { in TEST() function
210 TEST(DeclPrinter, TestTypedef4) { in TEST() function
219 TEST(DeclPrinter, TestNamespace1) { in TEST() function
227 TEST(DeclPrinter, TestNamespace2) { in TEST() function
235 TEST(DeclPrinter, TestNamespaceAlias1) { in TEST() function
244 TEST(DeclPrinter, TestNamespaceAlias2) { in TEST() function
253 TEST(DeclPrinter, TestCXXRecordDecl1) { in TEST() function
261 TEST(DeclPrinter, TestCXXRecordDecl2) { in TEST() function
[all …]
DSourceLocationTest.cpp31 TEST(MatchVerifier, ParseError) { in TEST() function
37 TEST(MatchVerifier, NoMatch) { in TEST() function
43 TEST(MatchVerifier, WrongType) { in TEST() function
49 TEST(LocationVerifier, WrongLocation) { in TEST() function
55 TEST(RangeVerifier, WrongRange) { in TEST() function
68 TEST(LabelDecl, Range) { in TEST() function
74 TEST(LabelStmt, Range) { in TEST() function
80 TEST(ParmVarDecl, KNRLocation) { in TEST() function
86 TEST(ParmVarDecl, KNRRange) { in TEST() function
92 TEST(CXXNewExpr, ArrayRange) { in TEST() function
[all …]
/external/nanopb-c/tests/decode_unittests/
Ddecode_unittests.c52 TEST(pb_read(&stream, buffer2, 6)) in main()
53 TEST(memcmp(buffer2, "foobar", 6) == 0) in main()
54 TEST(stream.bytes_left == sizeof(buffer1) - 6) in main()
55 TEST(pb_read(&stream, buffer2 + 6, stream.bytes_left)) in main()
56 TEST(memcmp(buffer1, buffer2, sizeof(buffer1)) == 0) in main()
57 TEST(stream.bytes_left == 0) in main()
58 TEST(!pb_read(&stream, buffer2, 1)) in main()
66 TEST(pb_read(&stream, buffer, 5)) in main()
67 TEST(memcmp(buffer, "xxxxx", 5) == 0) in main()
68 TEST(!pb_read(&stream, buffer, 50)) in main()
[all …]
/external/grpc-grpc/third_party/nanopb/tests/decode_unittests/
Ddecode_unittests.c52 TEST(pb_read(&stream, buffer2, 6)) in main()
53 TEST(memcmp(buffer2, "foobar", 6) == 0) in main()
54 TEST(stream.bytes_left == sizeof(buffer1) - 6) in main()
55 TEST(pb_read(&stream, buffer2 + 6, stream.bytes_left)) in main()
56 TEST(memcmp(buffer1, buffer2, sizeof(buffer1)) == 0) in main()
57 TEST(stream.bytes_left == 0) in main()
58 TEST(!pb_read(&stream, buffer2, 1)) in main()
66 TEST(pb_read(&stream, buffer, 5)) in main()
67 TEST(memcmp(buffer, "xxxxx", 5) == 0) in main()
68 TEST(!pb_read(&stream, buffer, 50)) in main()
[all …]
/external/virglrenderer/tests/
Dtest_virgl_resource.c50 #define TEST(thandle, ttarget, tformat, tbind, twidth, theight, tdepth, tarray_size, tnr_samples, t… macro
95 TEST(1, PIPE_MAX_TEXTURE_TYPES + 1, PIPE_FORMAT_R8_UNORM, 0, 50, 1, 1, 1, 0, EINVAL),
98 TEST(1, PIPE_BUFFER, PIPE_FORMAT_COUNT + 1, 0, 50, 1, 1, 1, 0, EINVAL),
112 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, 0, 50, 1, 1, 1, 0, 0),
114 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, 0, 50, 50, 1, 1, 0, EINVAL),
116 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, 0, 50, 1, 5, 1, 0, EINVAL),
118 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, 0, 50, 1, 1, 4, 0, EINVAL),
120 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, 0, 50, 1, 1, 1, 4, EINVAL),
125 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, PIPE_BIND_SAMPLER_VIEW, 50, 1, 1, 1, 0, 0),
127 TEST(1, PIPE_BUFFER, PIPE_FORMAT_R8_UNORM, PIPE_BIND_CUSTOM, 50, 1, 1, 1, 0, 0),
[all …]
/external/grpc-grpc/third_party/nanopb/tests/encode_unittests/
Dencode_unittests.c59 TEST(pb_write(&stream, buffer1, sizeof(buffer1))); in main()
60 TEST(memcmp(buffer1, buffer2, sizeof(buffer1)) == 0); in main()
61 TEST(!pb_write(&stream, buffer1, 1)); in main()
62 TEST(stream.bytes_written == sizeof(buffer1)); in main()
70 TEST(pb_write(&stream, buffer1, 5)); in main()
72 TEST(!pb_write(&stream, buffer1, 5)); in main()
80 TEST(WRITES(pb_encode_varint(&s, 0), "\0")); in main()
81 TEST(WRITES(pb_encode_varint(&s, 1), "\1")); in main()
82 TEST(WRITES(pb_encode_varint(&s, 0x7F), "\x7F")); in main()
83 TEST(WRITES(pb_encode_varint(&s, 0x80), "\x80\x01")); in main()
[all …]
/external/nanopb-c/tests/encode_unittests/
Dencode_unittests.c59 TEST(pb_write(&stream, buffer1, sizeof(buffer1))); in main()
60 TEST(memcmp(buffer1, buffer2, sizeof(buffer1)) == 0); in main()
61 TEST(!pb_write(&stream, buffer1, 1)); in main()
62 TEST(stream.bytes_written == sizeof(buffer1)); in main()
70 TEST(pb_write(&stream, buffer1, 5)); in main()
72 TEST(!pb_write(&stream, buffer1, 5)); in main()
80 TEST(WRITES(pb_encode_varint(&s, 0), "\0")); in main()
81 TEST(WRITES(pb_encode_varint(&s, 1), "\1")); in main()
82 TEST(WRITES(pb_encode_varint(&s, 0x7F), "\x7F")); in main()
83 TEST(WRITES(pb_encode_varint(&s, 0x80), "\x80\x01")); in main()
[all …]
/external/googletest/googletest/test/
Dgoogletest-printers-test.cc251 TEST(PrintEnumTest, AnonymousEnum) { in TEST() function
256 TEST(PrintEnumTest, EnumWithoutPrinter) { in TEST() function
261 TEST(PrintEnumTest, EnumWithStreaming) { in TEST() function
266 TEST(PrintEnumTest, EnumWithPrintTo) { in TEST() function
273 TEST(PrintClassTest, BiggestIntConvertible) { in TEST() function
280 TEST(PrintCharTest, PlainChar) { in TEST() function
300 TEST(PrintCharTest, SignedChar) { in TEST() function
307 TEST(PrintCharTest, UnsignedChar) { in TEST() function
316 TEST(PrintBuiltInTypeTest, Bool) { in TEST() function
322 TEST(PrintBuiltInTypeTest, Wchar_t) { in TEST() function
[all …]
/external/grpc-grpc/third_party/nanopb/tests/intsizes/
Dintsizes_unittests.c37 TEST(pb_encode(&s, DefaultSizes_fields, &msg1)); \
43 TEST(pb_decode(&s, IntSizes_fields, &msg2) == expected_result); \
46 TEST( (int64_t)msg2.req_int8 == int8); \
47 TEST((uint64_t)msg2.req_uint8 == uint8); \
48 TEST( (int64_t)msg2.req_sint8 == sint8); \
49 TEST( (int64_t)msg2.req_int16 == int16); \
50 TEST((uint64_t)msg2.req_uint16 == uint16); \
51 TEST( (int64_t)msg2.req_sint16 == sint16); \
52 TEST( (int64_t)msg2.req_int32 == int32); \
53 TEST((uint64_t)msg2.req_uint32 == uint32); \
[all …]
/external/nanopb-c/tests/intsizes/
Dintsizes_unittests.c37 TEST(pb_encode(&s, DefaultSizes_fields, &msg1)); \
43 TEST(pb_decode(&s, IntSizes_fields, &msg2) == expected_result); \
46 TEST( (int64_t)msg2.req_int8 == int8); \
47 TEST((uint64_t)msg2.req_uint8 == uint8); \
48 TEST( (int64_t)msg2.req_sint8 == sint8); \
49 TEST( (int64_t)msg2.req_int16 == int16); \
50 TEST((uint64_t)msg2.req_uint16 == uint16); \
51 TEST( (int64_t)msg2.req_sint16 == sint16); \
52 TEST( (int64_t)msg2.req_int32 == int32); \
53 TEST((uint64_t)msg2.req_uint32 == uint32); \
[all …]
/external/u-boot/post/lib_powerpc/fpu/
Dcompare-fp-1.c22 #define TEST(c) if ((c) != ok) failed++ macro
38 TEST (UNEQ (x, y)); in iuneq()
39 TEST (!LTGT (x, y)); in iuneq()
40 TEST (UNLE (x, y) && UNGE (x,y)); in iuneq()
45 TEST (ORD (x, y) && UNEQ (x, y)); in ieq()
50 TEST (!UNEQ (x, y)); /* Not optimizable. */ in iltgt()
51 TEST (LTGT (x, y)); /* Same, __builtin_islessgreater does not trap. */ in iltgt()
52 TEST (ORD (x, y) && (UNLT (x, y) || UNGT (x,y))); in iltgt()
57 TEST (UNLT (x, y) || UNGT (x, y)); in ine()
62 TEST (UNLT (x, y)); in iunlt()
[all …]
/external/google-breakpad/src/testing/gtest/test/
Dgtest-printers_test.cc247 TEST(PrintEnumTest, AnonymousEnum) { in TEST() function
252 TEST(PrintEnumTest, EnumWithoutPrinter) { in TEST() function
257 TEST(PrintEnumTest, EnumWithStreaming) { in TEST() function
262 TEST(PrintEnumTest, EnumWithPrintTo) { in TEST() function
269 TEST(PrintClassTest, BiggestIntConvertible) { in TEST() function
276 TEST(PrintCharTest, PlainChar) { in TEST() function
296 TEST(PrintCharTest, SignedChar) { in TEST() function
303 TEST(PrintCharTest, UnsignedChar) { in TEST() function
312 TEST(PrintBuiltInTypeTest, Bool) { in TEST() function
318 TEST(PrintBuiltInTypeTest, Wchar_t) { in TEST() function
[all …]

12345678910>>...147