HomeSort by relevance Sort by last modified time
    Searched refs:TEST (Results 1 - 25 of 2693) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/
gtest_test.cc 19 // Sanity test that gtest alone works on host and target
20 TEST(GTest, Nop) {}
  /external/chromium_org/testing/gtest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
gtest_shuffle_test_.cc 32 // Verifies that test shuffling works.
41 using ::testing::Test;
47 // The test methods are empty, as the sole purpose of this program is
48 // to print the test names before/after shuffling.
50 class A : public Test {};
54 TEST(ADeathTest, A) {}
55 TEST(ADeathTest, B) {}
56 TEST(ADeathTest, C) {}
58 TEST(B, A) {}
59 TEST(B, B) {
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
channel_unittest.cc 14 // Empty test just to get coverage metrics.
15 TEST(ChannelTest, EmptyTestToGetCodeCoverage) {}
  /external/gtest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
gtest_shuffle_test_.cc 32 // Verifies that test shuffling works.
41 using ::testing::Test;
47 // The test methods are empty, as the sole purpose of this program is
48 // to print the test names before/after shuffling.
50 class A : public Test {};
54 TEST(ADeathTest, A) {}
55 TEST(ADeathTest, B) {}
56 TEST(ADeathTest, C) {}
58 TEST(B, A) {}
59 TEST(B, B) {
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
gtest_help_test_.cc 38 // and exit with 0; otherwise the following test will be executed,
40 TEST(HelpFlagTest, ShouldNotBeRun) {
45 TEST(DeathTest, UsedByPythonScriptToDetectSupportForDeathTestsInThisBinary) {}
gtest_uninitialized_test_.cc 34 TEST(DummyTest, Dummy) {
35 // This test doesn't verify anything. We just need it to create a
36 // realistic stage for testing the behavior of Google Test when
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive_test.cc 7 #include "util/test.h"
14 // Test very simple expressions.
15 TEST(EgrepLiterals, Lowercase) {
19 // Test mixed-case expressions.
20 TEST(EgrepLiterals, MixedCase) {
24 // Test mixed-case in case-insensitive mode.
25 TEST(EgrepLiterals, FoldCase) {
32 // Test very simple expressions.
33 TEST(EgrepLiterals, UTF8) {
  /external/chromium_org/webkit/renderer/compositor_bindings/
compositor_bindings_dummy_unittest.cc 8 TEST(CompositorBindingsDummyTest, DummyTest) {
  /external/regex-re2/re2/testing/
exhaustive_test.cc 7 #include "util/test.h"
14 // Test very simple expressions.
15 TEST(EgrepLiterals, Lowercase) {
19 // Test mixed-case expressions.
20 TEST(EgrepLiterals, MixedCase) {
24 // Test mixed-case in case-insensitive mode.
25 TEST(EgrepLiterals, FoldCase) {
32 // Test very simple expressions.
33 TEST(EgrepLiterals, UTF8) {
  /external/nanopb-c/tests/alltypes/
decode_alltypes.c 13 #define TEST(x) if (!(x)) { \
14 printf("Test " #x " failed.\n"); \
30 TEST(alltypes.req_int32 == -1001);
31 TEST(alltypes.req_int64 == -1002);
32 TEST(alltypes.req_uint32 == 1003);
33 TEST(alltypes.req_uint64 == 1004);
34 TEST(alltypes.req_sint32 == -1005);
35 TEST(alltypes.req_sint64 == -1006);
36 TEST(alltypes.req_bool == true);
38 TEST(alltypes.req_fixed32 == 1008)
    [all...]
  /external/jemalloc/test/unit/
util.c 1 #include "test/jemalloc_test.h"
115 struct test_s *test = &tests[i]; local
121 result = malloc_strtoumax(test->input, &remainder, test->base);
123 assert_d_eq(err, test->expected_errno,
125 test->expected_errno_name, test->input, test->base);
126 assert_str_eq(remainder, test->expected_remainder,
128 test->input, test->base)
    [all...]
  /external/chromium_org/third_party/skia/tests/
FitsInTest.cpp 10 #include "Test.h"
14 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected)))
17 TEST(int32_t, 1, int8_t, true);
18 TEST(int32_t, -1, int8_t, true);
19 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true);
20 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false);
21 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true);
22 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false);
24 TEST(int32_t, 1, uint8_t, true);
25 TEST(int32_t, -1, uint8_t, false)
    [all...]
  /external/skia/tests/
FitsInTest.cpp 10 #include "Test.h"
14 #define TEST(S, s, D, expected) REPORTER_ASSERT(reporter, (SkTFitsIn<D>((S)(s)) == (expected)))
17 TEST(int32_t, 1, int8_t, true);
18 TEST(int32_t, -1, int8_t, true);
19 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::max)(), int8_t, true);
20 TEST(int32_t, ((int32_t)(std::numeric_limits<int8_t>::max)())+1, int8_t, false);
21 TEST(int32_t, (int32_t)(std::numeric_limits<int8_t>::min)(), int8_t, true);
22 TEST(int32_t, (int32_t)((std::numeric_limits<int8_t>::min)())-1, int8_t, false);
24 TEST(int32_t, 1, uint8_t, true);
25 TEST(int32_t, -1, uint8_t, false)
    [all...]
  /external/nanopb-c/tests/backwards_compatibility/
decode_legacy.c 2 * This is a backwards-compatibility test, using alltypes_legacy.h.
4 * decode_alltypes to test any new features introduced later.
16 #define TEST(x) if (!(x)) { \
17 printf("Test " #x " failed.\n"); \
33 TEST(alltypes.req_int32 == -1001);
34 TEST(alltypes.req_int64 == -1002);
35 TEST(alltypes.req_uint32 == 1003);
36 TEST(alltypes.req_uint64 == 1004);
37 TEST(alltypes.req_sint32 == -1005);
38 TEST(alltypes.req_sint64 == -1006)
    [all...]
  /external/clang/test/Preprocessor/
macro_space.c 12 #define TEST(FOO,x) FOO <FOO()> < FOO()> <FOO ()> <FOO( )> <FOO() > <FOO()x> <FOO() x> < FOO()x>
14 TEST(FOO1,)
17 TEST(FOO2,)
20 TEST(FOO3,)
23 TEST(FOO4,)
26 TEST(FOO5,)
29 TEST(FOO6,)
32 TEST(FOO7,)
35 TEST(FOO8,)
  /external/valgrind/main/none/tests/
mmap_fcntl_bug.stderr.exp 1 Child exited with zero (TEST PASSED).
  /external/nanopb-c/tests/alltypes_pointer/
decode_alltypes_pointer.c 8 #define TEST(x) if (!(x)) { \
9 fprintf(stderr, "Test " #x " failed.\n"); \
26 TEST(alltypes.req_int32 && *alltypes.req_int32 == -1001);
27 TEST(alltypes.req_int64 && *alltypes.req_int64 == -1002);
28 TEST(alltypes.req_uint32 && *alltypes.req_uint32 == 1003);
29 TEST(alltypes.req_uint64 && *alltypes.req_uint64 == 1004);
30 TEST(alltypes.req_sint32 && *alltypes.req_sint32 == -1005);
31 TEST(alltypes.req_sint64 && *alltypes.req_sint64 == -1006);
32 TEST(alltypes.req_bool && *alltypes.req_bool == true);
34 TEST(alltypes.req_fixed32 && *alltypes.req_fixed32 == 1008)
    [all...]
  /external/protobuf/gtest/test/
gtest_shuffle_test_.cc 32 // Verifies that test shuffling works.
41 using ::testing::Test;
48 // The test methods are empty, as the sole purpose of this program is
49 // to print the test names before/after shuffling.
51 class A : public Test {};
55 TEST(ADeathTest, A) {}
56 TEST(ADeathTest, B) {}
57 TEST(ADeathTest, C) {}
59 TEST(B, A) {}
60 TEST(B, B) {
    [all...]

Completed in 642 milliseconds

1 2 3 4 5 6 7 8 91011>>