HomeSort by relevance Sort by last modified time
    Searched refs:testing (Results 1751 - 1775 of 4772) sorted by null

<<71727374757677787980>>

  /external/chromium_org/remoting/host/
client_session_unittest.cc 21 #include "testing/gmock/include/gmock/gmock-matchers.h"
22 #include "testing/gmock_mutant.h"
23 #include "testing/gtest/include/gtest/gtest.h"
38 using testing::_;
39 using testing::AnyNumber;
40 using testing::AtMost;
41 using testing::CreateFunctor;
42 using testing::DeleteArg;
43 using testing::DoAll;
44 using testing::Expectation
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketTest.cpp 14 #include "core/testing/DummyPageHolder.h"
19 #include "wtf/testing/WTFTestHelpers.h"
25 using testing::_;
26 using testing::AnyNumber;
27 using testing::InSequence;
28 using testing::Ref;
29 using testing::Return;
35 typedef testing::StrictMock<testing::MockFunction<void(int)> > Checkpoint; // NOLINT
41 return adoptRefWillBeRefCountedGarbageCollected(new testing::StrictMock<MockWebSocketChannel>())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 247 // Brings in definitions for functions used in the testing::internal::posix
672 namespace testing { namespace
700 typedef ::testing::internal::CompileAssert<(bool(expr))> \
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 253 // Brings in definitions for functions used in the testing::internal::posix
682 namespace testing { namespace
710 typedef ::testing::internal::CompileAssert<(bool(expr))> \
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h 247 // Brings in definitions for functions used in the testing::internal::posix
672 namespace testing { namespace
700 typedef ::testing::internal::CompileAssert<(bool(expr))> \
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
favicon_cache_unittest.cc 22 #include "testing/gtest/include/gtest/gtest.h"
162 testing::AssertionResult CompareFaviconDataToSpecifics(
168 return testing::AssertionFailure() << "Image icon url doesn't match.";
173 return testing::AssertionFailure() << "16p image data doesn't match.";
176 return testing::AssertionFailure() << "Missing 16p favicon.";
182 return testing::AssertionFailure() << "32p image data doesn't match.";
185 return testing::AssertionFailure() << "Missing 32p favicon.";
191 return testing::AssertionFailure() << "64p image data doesn't match.";
194 return testing::AssertionFailure() << "Missing 64p favicon.";
200 return testing::AssertionFailure() << "Tracking icon url doesn't match."
    [all...]
  /external/chromium_org/chrome/browser/chromeos/net/
cert_verify_proc_chromeos_unittest.cc 15 #include "testing/gtest/include/gtest/gtest.h"
19 class CertVerifyProcChromeOSTest : public testing::Test {
283 public ::testing::WithParamInterface<
376 ::testing::Combine(
377 ::testing::Bool(),
378 ::testing::Range(0, 1 << 2),
379 ::testing::Values("d12", "d21", "1d2", "12d", "2d1", "21d")));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
chromevox_unittest_base.js 90 * @extends {testing.Test}
95 __proto__: testing.Test.prototype,
103 * since many of them are deliberately testing inaccessible html.
  /external/chromium_org/chrome/browser/sync/
backend_migrator_unittest.cc 17 #include "testing/gmock/include/gmock/gmock.h"
18 #include "testing/gtest/include/gtest/gtest.h"
20 using ::testing::_;
21 using ::testing::Eq;
22 using ::testing::Mock;
23 using ::testing::NiceMock;
24 using ::testing::Return;
30 class SyncBackendMigratorTest : public testing::Test {
  /external/chromium_org/chrome/browser/ui/webui/options/
language_options_dictionary_download_browsertest.js 6 * TestFixture for testing messages of dictionary download progress in language
8 * @extends {testing.Test}
14 __proto__: testing.Test.prototype,
  /external/chromium_org/content/browser/
plugin_browsertest.cc 56 const testing::TestInfo* const test_info =
57 testing::UnitTest::GetInstance()->current_test_info();
92 const testing::TestInfo* const test_info =
93 testing::UnitTest::GetInstance()->current_test_info();
117 const testing::TestInfo* const test_info =
118 testing::UnitTest::GetInstance()->current_test_info();
  /external/chromium_org/media/cast/receiver/
frame_receiver_unittest.cc 20 #include "testing/gmock/include/gmock/gmock.h"
22 using ::testing::_;
45 SCOPED_TRACE(::testing::Message() << "num_called_ is " << num_called_);
65 class FrameReceiverTest : public ::testing::Test {
114 // Note: For testing purposes, a frame consists of only a single packet.
175 .WillRepeatedly(testing::Return(true));
216 .WillRepeatedly(testing::Return(true));
319 .WillRepeatedly(testing::Return(true));
  /external/chromium_org/media/filters/
decrypting_audio_decoder_unittest.cc 19 #include "testing/gmock/include/gmock/gmock.h"
21 using ::testing::_;
22 using ::testing::AtMost;
23 using ::testing::SaveArg;
24 using ::testing::StrictMock;
64 class DecryptingAudioDecoderTest : public testing::Test {
81 .Times(testing::AnyNumber());
  /external/chromium_org/net/quic/
quic_headers_stream_test.cc 14 #include "testing/gtest/include/gtest/gtest.h"
18 using testing::Invoke;
19 using testing::StrictMock;
20 using testing::WithArgs;
21 using testing::_;
73 class QuicHeadersStreamTest : public ::testing::TestWithParam<bool> {
186 INSTANTIATE_TEST_CASE_P(Tests, QuicHeadersStreamTest, testing::Bool());
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 46 #include <google/protobuf/testing/googletest.h>
159 : public testing::TestWithParam<DescriptorDatabaseTestCaseFactory*> {
475 testing::Values(&SimpleDescriptorDatabaseTestCase::New));
477 testing::Values(&EncodedDescriptorDatabaseTestCase::New));
479 testing::Values(&DescriptorPoolDatabaseTestCase::New));
519 class MergedDescriptorDatabaseTest : public testing::Test {
  /external/guava/guava-tests/test/com/google/common/collect/
Collections2Test.java 21 import static com.google.common.collect.testing.testers.CollectionIteratorTester.getIteratorKnownOrderRemoveSupportedMethod;
29 import com.google.common.collect.testing.CollectionTestSuiteBuilder;
30 import com.google.common.collect.testing.TestStringCollectionGenerator;
31 import com.google.common.collect.testing.features.CollectionFeature;
32 import com.google.common.collect.testing.features.CollectionSize;
33 import com.google.common.testing.NullPointerTester;
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 46 #include <google/protobuf/testing/googletest.h>
159 : public testing::TestWithParam<DescriptorDatabaseTestCaseFactory*> {
475 testing::Values(&SimpleDescriptorDatabaseTestCase::New));
477 testing::Values(&EncodedDescriptorDatabaseTestCase::New));
479 testing::Values(&DescriptorPoolDatabaseTestCase::New));
519 class MergedDescriptorDatabaseTest : public testing::Test {
  /art/runtime/arch/
memcmp16_test.cc 32 class MemCmp16Test : public testing::Test {
142 int32_t computed = art::testing::MemCmp16Testing(s1_pot_unaligned, s2_pot_unaligned, mod_min);
  /cts/tests/core/runner/
Android.mk 23 # include this package in the tests target for continuous testing
  /external/chromium_org/android_webview/native/
aw_contents_client_bridge_unittest.cc 17 #include "testing/gmock/include/gmock/gmock.h"
18 #include "testing/gtest/include/gtest/gtest.h"
26 using testing::NotNull;
27 using testing::Test;
  /external/chromium_org/apps/app_shim/
app_shim_host_mac_unittest.cc 13 #include "testing/gtest/include/gtest/gtest.h"
51 class AppShimHostTest : public testing::Test,
115 testing::Test::SetUp();
  /external/chromium_org/ash/wm/
app_list_controller_unittest.cc 29 public ::testing::WithParamInterface<bool> {
186 ::testing::Bool());
  /external/chromium_org/base/allocator/
type_profiler_unittest.cc 19 #include "testing/gtest/include/gtest/gtest.h"
25 class TypeProfilerTest : public testing::Test {
187 testing::InitGoogleTest(&argc, argv);
  /external/chromium_org/cc/test/
layer_tree_json_parser_unittest.cc 12 #include "testing/gtest/include/gtest/gtest.h"
23 if (testing::UnitTest::GetInstance()->current_test_info()-> \
64 class LayerTreeJsonParserSanityCheck : public testing::Test {
  /external/chromium_org/chrome/browser/
chrome_elf_init_unittest_win.cc 18 #include "testing/gtest/include/gtest/gtest.h"
25 class ChromeBlacklistTrialTest : public testing::Test {
31 testing::Test::SetUp();

Completed in 2096 milliseconds

<<71727374757677787980>>