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

<<51525354555657585960>>

  /external/chromium_org/chrome/browser/net/spdyproxy/
data_reduction_proxy_settings_unittest_android.cc 17 #include "testing/gmock/include/gmock/gmock.h"
18 #include "testing/gtest/include/gtest/gtest.h"
21 using testing::_;
22 using testing::AnyNumber;
23 using testing::Return;
  /external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win_unittest.cc 10 #include "testing/gtest/include/gtest/gtest.h"
24 class PeImageReaderTest : public testing::TestWithParam<const TestData*> {
154 testing::Values(&kTestData[0]));
157 testing::Values(&kTestData[1]));
  /external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
app_info_permissions_panel_unittest.cc 20 #include "testing/gmock/include/gmock/gmock-matchers.h"
21 #include "testing/gtest/include/gtest/gtest.h"
31 using testing::Contains;
32 using testing::Eq;
34 class AppInfoPermissionsPanelTest : public testing::Test {
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_interactive_uitest_win.cc 13 #include "testing/gtest/include/gtest/gtest.h"
17 class StatusTrayStateChangerWinTest : public testing::Test {
22 testing::Test::SetUp();
43 testing::Test::TearDown();
  /external/chromium_org/chrome/service/cloud_print/
printer_job_queue_handler_unittest.cc 11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 using ::testing::Return;
15 using ::testing::AtLeast;
52 class PrinterJobQueueHandlerTest : public ::testing::Test {
  /external/chromium_org/components/dom_distiller/core/
viewer_unittest.cc 11 #include "testing/gtest/include/gtest/gtest.h"
71 class DomDistillerViewerTest : public testing::Test {
93 .WillOnce(testing::Return(viewer_handle));
105 .WillOnce(testing::Return(viewer_handle));
  /external/chromium_org/content/browser/geolocation/
network_location_provider_unittest.cc 18 #include "testing/gtest/include/gtest/gtest.h"
49 // A mock implementation of WifiDataProviderImplBase for testing. Adapted from
115 class GeolocationNetworkProviderTest : public testing::Test {
205 static testing::AssertionResult JsonGetList(
210 return testing::AssertionFailure() << "Dictionary " << PrettyJson(dict)
212 return testing::AssertionSuccess();
215 static testing::AssertionResult JsonFieldEquals(
222 return testing::AssertionFailure()
226 return testing::AssertionFailure()
230 return testing::AssertionFailure(
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
device_request_message_filter_unittest.cc 11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h"
14 using ::testing::_;
15 using ::testing::Invoke;
90 class DeviceRequestMessageFilterTest : public testing::Test {
  /external/chromium_org/content/renderer/media/
webrtc_audio_capturer_unittest.cc 14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h"
18 using ::testing::_;
19 using ::testing::AtLeast;
74 class WebRtcAudioCapturerTest : public testing::Test {
  /external/chromium_org/jingle/glue/
channel_socket_adapter_unittest.cc 12 #include "testing/gmock/include/gmock/gmock.h"
13 #include "testing/gtest/include/gtest/gtest.h"
18 using testing::_;
19 using testing::Return;
60 class TransportChannelSocketAdapterTest : public testing::Test {
  /external/chromium_org/media/filters/
ffmpeg_audio_decoder_unittest.cc 19 #include "testing/gtest/include/gtest/gtest.h"
21 using ::testing::_;
22 using ::testing::StrictMock;
26 class FFmpegAudioDecoderTest : public testing::Test {
  /external/chromium_org/net/quic/
quic_client_session_test.cc 25 using testing::_;
64 class QuicClientSessionTest : public ::testing::TestWithParam<QuicVersion> {
114 ::testing::ValuesIn(QuicSupportedVersions()));
  /external/chromium_org/net/websockets/
websocket_handshake_handler_spdy_test.cc 12 #include "testing/gtest/include/gtest/gtest.h"
20 : public ::testing::Test,
21 public ::testing::WithParamInterface<NextProto> {
31 testing::Values(kProtoDeprecatedSPDY2,
  /external/chromium_org/remoting/client/
key_event_mapper_unittest.cc 9 #include "testing/gmock/include/gmock/gmock.h"
10 #include "testing/gtest/include/gtest/gtest.h"
12 using ::testing::_;
13 using ::testing::ExpectationSet;
14 using ::testing::InSequence;
  /external/chromium_org/remoting/host/
host_change_notification_listener_unittest.cc 15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h"
23 using testing::NotNull;
24 using testing::Return;
44 class HostChangeNotificationListenerTest : public testing::Test {
  /external/chromium_org/sync/internal_api/public/
change_record_unittest.cc 14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h"
22 using testing::Invoke;
23 using testing::StrictMock;
25 class ChangeRecordTest : public testing::Test {};
  /external/chromium_org/testing/android/
native_test_launcher.cc 29 #include "testing/android/native_test_util.h"
31 using testing::native_test_util::ArgsToArgv;
32 using testing::native_test_util::ParseArgsFromCommandLineFile;
33 using testing::native_test_util::ScopedMainEntryLogger;
  /external/chromium_org/testing/gtest/test/
gtest_stress_test.cc 49 namespace testing { namespace
111 // is for testing whether Google Test can handle failed assertions in a
235 } // namespace testing
238 testing::InitGoogleTest(&argc, argv);
253 testing::InitGoogleTest(&argc, argv);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logtesting.py 23 """Supports the unit-testing of logging code.
25 Provides support for unit-testing messages logged using the built-in
28 Inherit from the LoggingTestCase class for basic testing needs. For
29 more advanced needs (e.g. unit-testing methods that configure logging),
40 """Represents a file-like object for unit-testing logging.
80 """Supports end-to-end unit-testing of log messages.
125 """Configure logging for unit testing.
127 Configures the root logger to log to a testing log stream.
220 """Supports end-to-end unit-testing of log messages.
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
uniform_initializer_utils.cpp 45 static ::testing::AssertionResult
54 return ::testing::AssertionFailure()
60 return ::testing::AssertionSuccess();
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 68 ::testing::AssertionResult PrintedDeclMatches(
81 return testing::AssertionFailure()
85 return testing::AssertionFailure()
89 return testing::AssertionFailure()
94 return ::testing::AssertionFailure()
98 return ::testing::AssertionSuccess();
101 ::testing::AssertionResult PrintedDeclCXX98Matches(StringRef Code,
112 ::testing::AssertionResult PrintedDeclCXX98Matches(
124 ::testing::AssertionResult PrintedDeclCXX11Matches(StringRef Code,
135 ::testing::AssertionResult PrintedDeclCXX11Matches
    [all...]
  /external/gtest/test/
gtest_stress_test.cc 49 namespace testing { namespace
111 // is for testing whether Google Test can handle failed assertions in a
235 } // namespace testing
238 testing::InitGoogleTest(&argc, argv);
253 testing::InitGoogleTest(&argc, argv);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForQueuesInJavaUtil.java 17 package com.google.common.collect.testing;
19 import com.google.common.collect.testing.features.CollectionFeature;
20 import com.google.common.collect.testing.features.CollectionSize;
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 22 import com.google.common.testing.EqualsTester;
23 import com.google.common.testing.EquivalenceTester;
24 import com.google.common.testing.SerializableTester;
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableBiMapTest.java 25 import com.google.common.collect.testing.MapInterfaceTest;
26 import com.google.common.collect.testing.ReserializingTestSetGenerator;
27 import com.google.common.collect.testing.SetTestSuiteBuilder;
28 import com.google.common.collect.testing.features.CollectionFeature;
29 import com.google.common.collect.testing.features.CollectionSize;
30 import com.google.common.collect.testing.google.BiMapGenerators.ImmutableBiMapEntrySetGenerator;
31 import com.google.common.collect.testing.google.BiMapGenerators.ImmutableBiMapInverseEntrySetGenerator;
32 import com.google.common.collect.testing.google.BiMapGenerators.ImmutableBiMapInverseKeySetGenerator;
33 import com.google.common.collect.testing.google.BiMapGenerators.ImmutableBiMapInverseValuesGenerator;
34 import com.google.common.collect.testing.google.BiMapGenerators.ImmutableBiMapKeySetGenerator
    [all...]

Completed in 1323 milliseconds

<<51525354555657585960>>