HomeSort by relevance Sort by last modified time
    Searched defs:TEST (Results 1 - 25 of 2252) 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) {}
  /bionic/tests/
strings_test.cpp 22 TEST(strings, ffs) {
  /dalvik/unit-tests/
dvmHumanReadableDescriptor_test.cpp 5 TEST(dvmHumanReadableDescriptor, ArrayReferences) {
10 TEST(dvmHumanReadableDescriptor, ScalarReferences) {
15 TEST(dvmHumanReadableDescriptor, PrimitiveArrays) {
34 TEST(dvmHumanReadableDescriptor, PrimitiveScalars) {
  /external/chromium/chrome/browser/autofill/
autofill_country_unittest.cc 12 // Test the constructor and accessors
13 TEST(AutofillCountryTest, AutofillCountry) {
35 // Test locale to country code mapping.
36 TEST(AutofillCountryTest, CountryCodeForLocale) {
46 // Test mapping of localized country names to country codes.
47 TEST(AutofillCountryTest, GetCountryCode) {
autofill_type_unittest.cc 10 TEST(AutofillTypeTest, Basic) {
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern_unittest.cc 12 TEST(ContentSettingsPatternTest, PatternSupport) {
17 EXPECT_TRUE(ContentSettingsPattern("file:///tmp/test.html").IsValid());
28 EXPECT_TRUE(ContentSettingsPattern("file:///tmp/test.html").Matches(
29 GURL("file:///tmp/test.html")));
36 EXPECT_FALSE(ContentSettingsPattern("file:///tmp/test.html").Matches(
38 EXPECT_FALSE(ContentSettingsPattern("file:///tmp/test.html").Matches(
42 TEST(ContentSettingsPatternTest, CanonicalizePattern) {
64 EXPECT_STREQ("file:///tmp/test.html", ContentSettingsPattern(
65 "file:///tmp/bar/../test.html").CanonicalizePattern().c_str());
  /external/chromium/chrome/common/
content_settings_helper_unittest.cc 11 TEST(ContentSettingsHelperTest, OriginToString16) {
  /external/chromium/testing/gmock/test/
gmock-port_test.cc 40 // test here to make references to symbols in the gtest library and avoid
43 TEST(DummyTest, Dummy) {}
  /external/chromium/testing/gtest/samples/
sample1_unittest.cc 35 // This sample shows how to write a simple unit test for a function,
38 // Writing a unit test using Google C++ testing framework is easy as 1-2-3:
42 // test logic needs is declared.
51 // Step 2. Use the TEST macro to define your tests.
53 // TEST has two parameters: the test case name and the test name.
54 // After using the macro, you should define your test logic between a
56 // success or failure of a test. EXPECT_TRUE and EXPECT_EQ are
61 // In Google Test, tests are grouped into test cases. This is how w
    [all...]
  /external/chromium/testing/gtest/test/
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_main_unittest.cc 39 TEST(GTestMainTest, ShouldSucceed) {
  /external/chromium_org/base/process/
process_util_unittest_ios.cc 9 TEST(ProcessUtilTestIos, Memory) {
  /external/chromium_org/chrome/browser/download/
download_util_unittest.cc 11 TEST(DownloadUtilTest, FinchStrings) {
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_port_enumerator_unittest.cc 10 TEST(SerialPortEnumeratorTest, ValidPortNamePatterns) {
37 TEST(SerialPortEnumeratorTest, InvalidPortNamePatterns) {
  /external/chromium_org/chrome/browser/
file_select_helper_unittest.cc 8 TEST(FileSelectHelperTest, IsAcceptTypeValid) {
  /external/chromium_org/chrome/browser/ui/webui/options/
language_options_handler_unittest.cc 13 TEST(LanguageOptionsHandlerTest, GetUILanguageCodeSet) {
17 // Note that we don't test a false case, as such an expectation will
23 TEST(LanguageOptionsHandlerTest, GetSpellCheckLanguageCodeSet) {
  /external/chromium_org/chrome/common/
content_settings_helper_unittest.cc 11 TEST(ContentSettingsHelperTest, OriginToString16) {
  /external/chromium_org/chrome/installer/setup/
compat_checks_unittest.cc 8 // Test that we detect the incompatible SEP version. The very last digit
10 TEST(CompatTests, SymantecSEPVersion) {
  /external/chromium_org/chrome/installer/util/
compat_checks_unittest.cc 8 // Test that we detect the incompatible SEP version. The very last digit
10 TEST(CompatTests, SymantecSEP) {
  /external/chromium_org/chrome/test/chromedriver/chrome/
status_unittest.cc 5 #include "chrome/test/chromedriver/chrome/status.h"
8 TEST(StatusTest, Ok) {
16 TEST(StatusTest, Error) {
24 TEST(StatusTest, ErrorWithDetails) {
32 TEST(StatusTest, ErrorWithCause) {
48 TEST(StatusTest, AddDetails) {
  /external/chromium_org/chrome_frame/
chrome_launcher_unittest.cc 11 TEST(ChromeLauncher, IsValidCommandLine) {
37 TEST(ChromeLauncher, TrimWhiteSpace) {
57 TEST(ChromeLauncher, IsValidArgument) {
  /external/chromium_org/content/common/
page_zoom_unittest.cc 9 TEST(PageZoomTest, ZoomValuesEqual) {
10 // Test two identical values.
13 // Test two values that are close enough to be considered equal.
16 // Test two values that are close, but should not be considered equal.
  /external/chromium_org/extensions/common/matcher/
string_pattern_unittest.cc 13 TEST(StringPatternTest, StringPattern) {
14 StringPattern r1("Test", 2);
15 EXPECT_EQ("Test", r1.pattern());
19 StringPattern r2("Test", 3);
  /external/chromium_org/media/audio/ios/
audio_manager_ios_unittest.cc 13 // Test that input is supported and output is not.
14 TEST(IOSAudioTest, AudioSupport) {
21 // Test that input stream can be opened and closed.
22 TEST(IOSAudioTest, InputStreamOpenAndClose) {
  /external/chromium_org/testing/gtest/samples/
sample1_unittest.cc 35 // This sample shows how to write a simple unit test for a function,
38 // Writing a unit test using Google C++ testing framework is easy as 1-2-3:
42 // test logic needs is declared.
51 // Step 2. Use the TEST macro to define your tests.
53 // TEST has two parameters: the test case name and the test name.
54 // After using the macro, you should define your test logic between a
56 // success or failure of a test. EXPECT_TRUE and EXPECT_EQ are
61 // In Google Test, tests are grouped into test cases. This is how w
    [all...]

Completed in 472 milliseconds

1 2 3 4 5 6 7 8 91011>>