/external/protobuf/gtest/test/ |
gtest-message_test.cc | 40 using ::testing::Message; 41 using ::testing::internal::StrStream; 45 static testing::internal::String result; 50 // Tests the testing::Message class 149 EXPECT_STREQ("Hello", testing::internal::StrStreamToString(&ss).c_str());
|
gtest_unittest.cc | 41 bool dummy = testing::GTEST_FLAG(also_run_disabled_tests) 42 || testing::GTEST_FLAG(break_on_failure) 43 || testing::GTEST_FLAG(catch_exceptions) 44 || testing::GTEST_FLAG(color) != "unknown" 45 || testing::GTEST_FLAG(filter) != "unknown" 46 || testing::GTEST_FLAG(list_tests) 47 || testing::GTEST_FLAG(output) != "unknown" 48 || testing::GTEST_FLAG(print_time) 49 || testing::GTEST_FLAG(random_seed) 50 || testing::GTEST_FLAG(repeat) > 81 namespace testing { namespace 4291 namespace testing { namespace 5096 namespace testing { namespace 6121 namespace testing { namespace in namespace:my_namespace [all...] |
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
LayoutTestController.h | 91 // Repaint testing. 96 // Animation testing. 102 // Compositing testing. 105 // UserContent testing. 109 // Text search testing.
|
/frameworks/base/docs/html/guide/topics/testing/ |
what_to_test.jd | 2 parent.title=Testing 11 site is another resource for information about testing. 13 <h2 id="Tests">Ideas for Testing</h2> 27 re-start the foreground Activity. You should consider testing the following: 48 the foreground Activity. Besides testing that the application maintains the UI and its
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
OAEPParameterSpecTest.java | 41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException 94 * getDigestAlgorithm() method testing. 110 * getMGFAlgorithm() method testing. 126 * getMGFParameters() method testing. 142 * getPSource() method testing.
|
/libcore/luni/src/test/java/tests/security/cert/ |
X509CRLEntryTest.java | 42 * The stub class used for testing of non abstract methods. 95 * X509CRLEntry() method testing. Tests for creating object. 113 * equals(Object other) method testing. Tests the correctness of equal 164 * hashCode() method testing. Tests that for equal objects hash codes 178 * getCertificateIssuer() method testing. Tests if the method throws
|
/external/chromium/testing/gmock/test/ |
gmock-spec-builders_test.cc | 48 namespace testing { namespace 51 // Helper class for testing the Expectation class template. 61 } // namespace testing 65 using testing::_; 66 using testing::AnyNumber; 67 using testing::AtLeast; 68 using testing::AtMost; 69 using testing::Between; 70 using testing::Cardinality; 71 using testing::CardinalityInterface [all...] |
gmock-more-actions_test.cc | 45 namespace testing { namespace 54 using testing::_; 55 using testing::Action; 56 using testing::ActionInterface; 57 using testing::DeleteArg; 58 using testing::Invoke; 59 using testing::Return; 60 using testing::ReturnArg; 61 using testing::ReturnPointee; 62 using testing::SaveArg [all...] |
gmock-matchers_test.cc | 52 namespace testing { namespace 73 using testing::A; 74 using testing::AllArgs; 75 using testing::AllOf; 76 using testing::An; 77 using testing::AnyOf; 78 using testing::ByRef; 79 using testing::ContainsRegex; 80 using testing::DoubleEq; 81 using testing::EndsWith [all...] |
/external/chromium/testing/gtest/include/gtest/ |
gtest-param-test.h.pump | 36 // in Google C++ Testing Framework (Google Test) 52 // class. It is usually derived from testing::TestWithParam<T> (see below for 55 // TestWithParam<T> is itself derived from testing::Test. T can be any 59 class FooTest : public ::testing::TestWithParam<const char*> { 82 // are all in the testing namespace: 154 // A parameterized test fixture must be derived from testing::Test and from 155 // testing::WithParamInterface<T>, where T is the type of the parameter 161 class BaseTest : public ::testing::Test { 166 class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> { 196 namespace testing { [all...] |
/external/android-mock/tests/com/google/android/testing/mocking/ |
FileUtilsTest.java | 16 package com.google.android.testing.mocking; 31 "com/google/android/testing/mocking/FileUtilsTest$InnerClass.class"), 39 "com/google/android/testing/mocking/FileUtilsTest$InnerClass.class"),
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
PBEParameterSpecTest.java | 38 * PBEParameterSpec(byte[] salt, int iterationCount) method testing. 61 * getSalt() method testing. Tests that returned salt is equal 81 * getIterationCount() method testing. Tests that returned value is equal
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/ |
CertificateTest.java | 44 * The stub class used for testing of non abstract methods. 74 * equals(Object obj) method testing. Tests the correctness of equal 130 * hashCode() method testing.
|
/external/chromium/app/sql/ |
connection_unittest.cc | 9 #include "testing/gtest/include/gtest/gtest.h" 12 class SQLConnectionTest : public testing::Test { 87 // Testing for a column on a nonexistent table.
|
/external/chromium/base/memory/ |
scoped_vector_unittest.cc | 7 #include "testing/gtest/include/gtest/gtest.h" 38 // The life cycle states we care about for the purposes of testing ScopedVector 50 // construction & destruction. Since we also may be testing assumptions about
|
/external/chromium/chrome/browser/ |
autocomplete_history_manager_unittest.cc | 18 #include "testing/gmock/include/gmock/gmock.h" 19 #include "testing/gtest/include/gtest/gtest.h" 22 using testing::_;
|
/external/chromium/chrome/browser/notifications/ |
desktop_notifications_unittest.h | 22 #include "testing/gtest/include/gtest/gtest.h" 70 class DesktopNotificationsTest : public testing::Test { 82 // testing::Test overrides
|
/external/chromium/chrome/browser/sync/syncable/ |
syncable_id_unittest.cc | 12 #include "testing/gtest/include/gtest/gtest.h" 20 class SyncableIdTest : public testing::Test { }; 62 // The following looks redundant, but we're testing a custom operator<.
|
/external/chromium/chrome/browser/ui/cocoa/ |
about_window_controller_unittest.mm | 12 #include "testing/gtest/include/gtest/gtest.h" 13 #import "testing/gtest_mac.h" 14 #include "testing/platform_test.h"
|
framed_browser_window_unittest.mm | 14 #include "testing/gtest/include/gtest/gtest.h" 15 #import "testing/gtest_mac.h" 16 #include "testing/platform_test.h"
|
tab_view_picker_table_unittest.mm | 12 #include "testing/gtest/include/gtest/gtest.h" 13 #import "testing/gtest_mac.h" 14 #include "testing/platform_test.h"
|
task_manager_mac_unittest.mm | 13 #include "testing/gtest/include/gtest/gtest.h" 14 #import "testing/gtest_mac.h" 15 #include "testing/platform_test.h"
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_bridge_unittest.mm | 9 #include "testing/gtest/include/gtest/gtest.h" 10 #import "testing/gtest_mac.h" 11 #include "testing/platform_test.h"
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_bridge.mm | 106 // tests (testing prepopulate values that Mac's don't rely on), but if we add 115 // tests (testing prepopulate values that Mac's don't rely on), but if we add 124 // tests (testing prepopulate values that Mac's don't rely on), but if we add
|
find_bar_text_field_cell_unittest.mm | 10 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/platform_test.h" 40 [[FindBarTextFieldCell alloc] initTextCell:@"Testing"]);
|