HomeSort by relevance Sort by last modified time
    Searched defs:TestUtils (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/sfntly/cpp/src/test/
test_utils.h 31 class TestUtils {
32 TestUtils();
test_utils.cc 30 TestUtils::TestUtils() {}
37 // void TestUtils::CreateNewFile(const char* file_path) {
41 int32_t TestUtils::EncodeOneChar(UConverter* encoder, int16_t uchar) {
72 UConverter* TestUtils::GetEncoder(const char* charset_name) {
84 const char* TestUtils::Extension(const char* file_path) {
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
TestUtils.java 24 public class TestUtils {
25 private TestUtils() {}
28 InputStream is = TestUtils.class.getResourceAsStream("/" + name);
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 42 public class TestUtils {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/
TestUtils.java 22 public class TestUtils {
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanRecordTest.java 43 ScanRecord data = TestUtils.parseScanRecord(scanRecord);
57 TestUtils.assertArrayEquals(manufacturerData,
59 TestUtils.assertArrayEquals(manufacturerData, data.getManufacturerSpecificData(0x00E0));
64 TestUtils.assertArrayEquals(serviceData, data.getServiceData().get(uuid2));
65 TestUtils.assertArrayEquals(serviceData, data.getServiceData(uuid2));
ScanResultTest.java 50 ScanResult result = new ScanResult(device, TestUtils.parseScanRecord(SCAN_RECORD), RSSI,
61 TestUtils.assertArrayEquals(SCAN_RECORD, resultFromParcel.getScanRecord().getBytes());
71 ScanResult result = new ScanResult(device, TestUtils.parseScanRecord(SCAN_RECORD), RSSI,
TestUtils.java 32 class TestUtils {
  /cts/tests/tests/location/src/android/location/cts/
TestUtils.java 23 public class TestUtils {
  /external/autotest/site_utils/rpm_control_system/
utils_unittest.py 16 class TestUtils(mox.MoxTestBase):
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/
TestUtils.java 14 public final class TestUtils {
  /frameworks/support/v7/mediarouter/tests/src/android/support/v7/media/
TestUtils.java 19 public class TestUtils {
  /cts/tests/tests/net/src/android/net/wifi/aware/cts/
TestUtils.java 27 class TestUtils {
  /frameworks/base/services/tests/servicestests/src/com/android/server/testutis/
TestUtils.java 22 public class TestUtils {
23 private TestUtils() {
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
NetworkSecurityConfigTests.java 128 SSLContext context = TestUtils.getSSLContext(testSource);
129 TestUtils.assertConnectionFails(context, "android.com", 443);
138 SSLContext context = TestUtils.getSSLContext(new TestConfigSource(domainMap, defaultConfig));
139 TestUtils.assertConnectionFails(context, "android.com", 443);
140 TestUtils.assertConnectionSucceeds(context, "google.com", 443);
156 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getSystemStoreConfig()));
157 TestUtils.assertConnectionFails(context, "android.com", 443);
158 TestUtils.assertConnectionSucceeds(context, "google.com", 443);
174 = TestUtils.getSSLContext(new TestConfigSource(domainMap, getEmptyConfig()));
175 TestUtils.assertConnectionSucceeds(context, "android.com", 443)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
TestUtils.java 21 public class TestUtils {
  /frameworks/support/v7/palette/tests/java/android/support/v7/graphics/
TestUtils.java 27 class TestUtils {
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestUtils.java 30 public class TestUtils {
35 private TestUtils() {
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/testcommon/
TestUtils.java 28 public class TestUtils {
  /packages/apps/TV/tests/unit/src/com/android/tv/util/
TestUtils.java 32 public class TestUtils {
  /frameworks/support/compat/tests/java/android/support/v4/testutils/
TestUtils.java 18 package android.support.v4.testutils;
30 public class TestUtils {
  /frameworks/support/core-ui/tests/java/android/support/v4/testutils/
TestUtils.java 18 package android.support.v4.testutils;
29 public class TestUtils {
  /cts/tests/tests/telecom/src/android/telecom/cts/
BasicInCallServiceTest.java 19 import static android.telecom.cts.TestUtils.shouldTestTelecom;
47 mPreviousDefaultDialer = TestUtils.getDefaultDialer(getInstrumentation());
48 TestUtils.setDefaultDialer(getInstrumentation(), TestUtils.PACKAGE);
54 TestUtils.setDefaultDialer(getInstrumentation(), mPreviousDefaultDialer);
80 if (callbacks.lock.tryAcquire(TestUtils.WAIT_FOR_CALL_ADDED_TIMEOUT_S,
SimCallManagerTest.java 19 import static android.telecom.cts.TestUtils.ACCOUNT_ID;
20 import static android.telecom.cts.TestUtils.ACCOUNT_LABEL;
21 import static android.telecom.cts.TestUtils.COMPONENT;
22 import static android.telecom.cts.TestUtils.PACKAGE;
65 if (!TestUtils.shouldTestTelecom(mContext)) {
68 mPreviousDefaultDialer = TestUtils.getDefaultDialer(getInstrumentation());
71 mSystemDialer = TestUtils.getSystemDialer(getInstrumentation());
73 TestUtils.setDefaultDialer(getInstrumentation(), mSystemDialer);
83 TestUtils.setDefaultDialer(getInstrumentation(), mPreviousDefaultDialer);
89 if (!TestUtils.shouldTestTelecom(mContext))
    [all...]
  /cts/tests/tests/telecom2/src/android/telecom/cts/
DefaultDialerOperationsNoPermissionsTest.java 37 if (!TestUtils.shouldTestTelecom(mContext)) {
40 TestUtils.PACKAGE = mContext.getPackageName();
41 mPreviousDefaultDialer = TestUtils.getDefaultDialer(getInstrumentation());
44 mSystemDialer = TestUtils.getSystemDialer(getInstrumentation());
46 TestUtils.setDefaultDialer(getInstrumentation(), mSystemDialer);
56 TestUtils.setDefaultDialer(getInstrumentation(), mPreviousDefaultDialer);
62 if (!TestUtils.shouldTestTelecom(mContext)) {
74 if (!TestUtils.shouldTestTelecom(mContext)) {
86 if (!TestUtils.shouldTestTelecom(mContext)) {
98 if (!TestUtils.shouldTestTelecom(mContext))
    [all...]

Completed in 669 milliseconds

1 2 3 4 5