Home
last modified time | relevance | path

Searched refs:testString (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/storage/
DDatabaseManagerTest.java675 String testString = "TEST STRING"; in testDatabaseMigration_101_102() local
699 device.put("manufacturer_name", testString); in testDatabaseMigration_101_102()
700 device.put("model_name", testString); in testDatabaseMigration_101_102()
701 device.put("software_version", testString); in testDatabaseMigration_101_102()
702 device.put("hardware_version", testString); in testDatabaseMigration_101_102()
703 device.put("companion_app", testString); in testDatabaseMigration_101_102()
704 device.put("main_icon", testString); in testDatabaseMigration_101_102()
705 device.put("is_unthethered_headset", testString); in testDatabaseMigration_101_102()
706 device.put("unthethered_left_icon", testString); in testDatabaseMigration_101_102()
707 device.put("unthethered_right_icon", testString); in testDatabaseMigration_101_102()
[all …]
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/util/
DGsmAlphabetTest.java43 StringBuilder testString = new StringBuilder(300); in gsm7BitPackedToString() local
46 testString.toString()); in gsm7BitPackedToString()
48 .isEqualTo(testString.toString()); in gsm7BitPackedToString()
51 for (int i = 0; i < 9; i++, testString.append('@')) { in gsm7BitPackedToString()
53 testString.toString()); in gsm7BitPackedToString()
55 .isEqualTo(testString.toString()); in gsm7BitPackedToString()
59 testString.append(GSM_EXTENDED_CHARS); in gsm7BitPackedToString()
61 testString.toString()); in gsm7BitPackedToString()
63 .isEqualTo(testString.toString()); in gsm7BitPackedToString()
66 testString.setLength(0); in gsm7BitPackedToString()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
DEntityHeaderControllerTest.java111 final String testString = "test"; in bindViews_shouldBindAllData() local
119 mController.setLabel(testString); in bindViews_shouldBindAllData()
120 mController.setSummary(testString); in bindViews_shouldBindAllData()
121 mController.setSecondSummary(testString); in bindViews_shouldBindAllData()
126 assertThat(label.getText()).isEqualTo(testString); in bindViews_shouldBindAllData()
128 assertThat(summary.getText()).isEqualTo(testString); in bindViews_shouldBindAllData()
130 assertThat(secondSummary.getText()).isEqualTo(testString); in bindViews_shouldBindAllData()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/data/
DUwbMulticastListUpdateStatusTest.java62 final String testString = "UwbMulticastListUpdateEvent { " in testInitializeUwbMulticastListUpdateStatus() local
71 assertThat(mUwbMulticastListUpdateStatus.toString()).isEqualTo(testString); in testInitializeUwbMulticastListUpdateStatus()
DUwbRangingDataTest.java88 final String testString = "UwbRangingData { " in testInitializeUwbRangingData() local
99 assertThat(mUwbRangingData.toString()).isEqualTo(testString); in testInitializeUwbRangingData()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DDscpPolicyTest.kt242 val testString = "test string" in <lambda>() constant
243 val testPacket = ByteBuffer.wrap(testString.toByteArray(Charsets.UTF_8)) in <lambda>()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/util/
DFileUtilsTest.java147 public void testString() throws Exception { in testString() method in FileUtilsTest