/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | VehiclePropertyIdsTest.java | 89 assertEquals("INVALID", VehiclePropertyIds.toString(VehiclePropertyIds.INVALID)); in testToString() 90 assertEquals("INFO_VIN", VehiclePropertyIds.toString(VehiclePropertyIds.INFO_VIN)); in testToString() 91 assertEquals("INFO_MAKE", VehiclePropertyIds.toString(VehiclePropertyIds.INFO_MAKE)); in testToString() 92 assertEquals("INFO_MODEL", VehiclePropertyIds.toString(VehiclePropertyIds.INFO_MODEL)); in testToString() 94 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_MODEL_YEAR)); in testToString() 96 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_FUEL_CAPACITY)); in testToString() 98 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_FUEL_TYPE)); in testToString() 100 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_EV_BATTERY_CAPACITY)); in testToString() 102 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_MULTI_EV_PORT_LOCATIONS)); in testToString() 104 VehiclePropertyIds.toString(VehiclePropertyIds.INFO_EV_CONNECTOR_TYPE)); in testToString() [all …]
|
D | VehicleGearTest.java | 75 assertThat(VehicleGear.toString(VehicleGear.GEAR_UNKNOWN)).isEqualTo("GEAR_UNKNOWN"); in testToString() 77 assertThat(VehicleGear.toString(VehicleGear.GEAR_NEUTRAL)).isEqualTo("GEAR_NEUTRAL"); in testToString() 79 assertThat(VehicleGear.toString(VehicleGear.GEAR_REVERSE)).isEqualTo("GEAR_REVERSE"); in testToString() 81 assertThat(VehicleGear.toString(VehicleGear.GEAR_PARK)).isEqualTo("GEAR_PARK"); in testToString() 83 assertThat(VehicleGear.toString(VehicleGear.GEAR_DRIVE)).isEqualTo("GEAR_DRIVE"); in testToString() 85 assertThat(VehicleGear.toString(VehicleGear.GEAR_FIRST)).isEqualTo("GEAR_FIRST"); in testToString() 87 assertThat(VehicleGear.toString(VehicleGear.GEAR_SECOND)).isEqualTo("GEAR_SECOND"); in testToString() 89 assertThat(VehicleGear.toString(VehicleGear.GEAR_THIRD)).isEqualTo("GEAR_THIRD"); in testToString() 91 assertThat(VehicleGear.toString(VehicleGear.GEAR_FOURTH)).isEqualTo("GEAR_FOURTH"); in testToString() 93 assertThat(VehicleGear.toString(VehicleGear.GEAR_FIFTH)).isEqualTo("GEAR_FIFTH"); in testToString() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiLinkLayerStats.java | 333 public String toString() { in toString() method in WifiLinkLayerStats 338 sbuf.append(" my bss beacon rx: ").append(Integer.toString(this.beacon_rx)).append('\n'); in toString() 339 sbuf.append(" RSSI mgmt: ").append(Integer.toString(this.rssi_mgmt)).append('\n'); in toString() 340 sbuf.append(" BE : ").append(" rx=").append(Long.toString(this.rxmpdu_be)) in toString() 341 .append(" tx=").append(Long.toString(this.txmpdu_be)) in toString() 342 .append(" lost=").append(Long.toString(this.lostmpdu_be)) in toString() 343 .append(" retries=").append(Long.toString(this.retries_be)).append('\n') in toString() 345 .append(Long.toString(this.contentionTimeMinBeInUsec)) in toString() 347 .append(Long.toString(this.contentionTimeMaxBeInUsec)).append('\n') in toString() 349 .append(Long.toString(this.contentionTimeAvgBeInUsec)) in toString() [all …]
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
D | ControlPanelEffect.java | 167 final boolean isGlobalEnabled = prefs.getBoolean(Key.global_enabled.toString(), in initEffectsPreferences() 169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled); in initEffectsPreferences() 173 final boolean isVIEnabled = prefs.getBoolean(Key.virt_enabled.toString(), in initEffectsPreferences() 176 final int vIStrength = prefs.getInt(Key.virt_strength.toString(), in initEffectsPreferences() 179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled); in initEffectsPreferences() 180 editor.putInt(Key.virt_strength.toString(), vIStrength); in initEffectsPreferences() 187 editor.putBoolean(Key.virt_strength_supported.toString(), in initEffectsPreferences() 199 final boolean isBBEnabled = prefs.getBoolean(Key.bb_enabled.toString(), in initEffectsPreferences() 201 final int bBStrength = prefs.getInt(Key.bb_strength.toString(), in initEffectsPreferences() 203 editor.putBoolean(Key.bb_enabled.toString(), isBBEnabled); in initEffectsPreferences() [all …]
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | LogcatLogTest.java | 54 assertEquals("hello world", logMessage.toString()); in logMessageWorksWithParameterlessFormat() 62 assertEquals("", logMessage.toString()); in logMessageWorksWithEmptyFormat() 70 assertEquals("1", logMessage.toString()); in logMessageWorksWithValueOnly() 81 assertEquals("%", logMessage.toString()); in logMessageIsNotConfusedByPlaceholderInValue() 89 assertEquals("1stuff", logMessage.toString()); in logMessageWorksWithValueAtBegin() 97 assertEquals("s1uff", logMessage.toString()); in logMessageWorksWithValueInMiddle() 105 assertEquals("stuff1", logMessage.toString()); in logMessageWorksWithValueAtEnd() 113 assertEquals("hello world", logMessage.toString()); in logMessageWorksWithMultipleValues() 121 assertEquals("first:hello second:world", logMessage.toString()); in logMessageWorksWithMultipleValuesAndLiterals() 129 assertEquals("helloworld", logMessage.toString()); in logMessageWorksWithAdjacentValues() [all …]
|
D | ScoringParamsTest.java | 96 String actual = mScoringParams.toString(); 108 assertEquals(params, mScoringParams.toString()); 117 String before = mScoringParams.toString(); 121 String after = mScoringParams.toString(); 132 String before = mScoringParams.toString(); 148 assertEquals(before, mScoringParams.toString()); 157 String before = mScoringParams.toString(); 160 assertEquals(before, mScoringParams.toString()); 169 String before = mScoringParams.toString(); 175 assertEquals(before, mScoringParams.toString()); [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | InputLogicTests.java | 49 assertEquals("type word", WORD_TO_TYPE, mEditText.getText().toString()); in testTypeWord() 60 mEditText.getText().toString()); in testPickSuggestionThenBackspace() 72 mEditText.getText().toString()); in testPickAutoCorrectionThenBackspace() 75 mEditText.getText().toString()); in testPickAutoCorrectionThenBackspace() 86 mEditText.getText().toString()); in testPickTypedWordOverAutoCorrectionThenBackspace() 89 mEditText.getText().toString()); in testPickTypedWordOverAutoCorrectionThenBackspace() 101 mEditText.getText().toString()); in testPickDifferentSuggestionThenBackspace() 104 mEditText.getText().toString()); in testPickDifferentSuggestionThenBackspace() 125 assertEquals("delete selection", EXPECTED_RESULT, mEditText.getText().toString()); in testDeleteSelection() 147 assertEquals("delete selection twice", EXPECTED_RESULT, mEditText.getText().toString()); in testDeleteSelectionTwice() [all …]
|
D | PunctuationTests.java | 48 EXPECTED_RESULT, mEditText.getText().toString()); in testWordThenSpaceThenPunctuationFromStripTwice() 60 mEditText.getText().toString()); in testWordThenSpaceThenPunctuationFromKeyboardTwice() 74 mEditText.getText().toString()); in testManualPickThenPunctuationFromStripTwiceThenType() 85 mEditText.getText().toString()); in testManualPickThenManualPickWithPunctAtStart() 96 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenColon() 107 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenOpenParen() 118 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenCloseParen() 129 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenSmiley() 140 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenDotCom() 150 EXPECTED_RESULT, mEditText.getText().toString()); in testTypeWordTypeDotThenPressDotCom() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
D | PointerTrackerQueueTests.java | 65 public String toString() { in toString() method in PointerTrackerQueueTests.Element 66 return Integer.toString(mId); in toString() 79 assertEquals("[]", mQueue.toString()); in testEmpty() 86 assertEquals("[1]", mQueue.toString()); in testAdd() 89 assertEquals("[1 2]", mQueue.toString()); in testAdd() 92 assertEquals("[1 2 3]", mQueue.toString()); in testAdd() 95 assertEquals("[1 2 3 4]", mQueue.toString()); in testAdd() 109 assertEquals("[1 3 4]", mQueue.toString()); in testRemove() 112 assertEquals("[1 3]", mQueue.toString()); in testRemove() 115 assertEquals("[1 3]", mQueue.toString()); in testRemove() [all …]
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipTransformationTest.java | 35 Assert.assertEquals(null, trans.toString()); in testCreateEmpty() 45 Assert.assertEquals("crop", trans.toString()); in testAddTransformation() 51 Assert.assertEquals("stretch crop", trans.toString()); in testAddTransformation() 61 Assert.assertEquals("crop", trans.toString()); in testAddExistingTransformation() 67 Assert.assertEquals("crop", trans.toString()); in testAddExistingTransformation() 90 Assert.assertEquals("crop", trans.toString()); in testRemoveOnlyTransformation() 97 Assert.assertEquals(null, trans.toString()); in testRemoveOnlyTransformation() 108 Assert.assertEquals("stretch crop", trans.toString()); in testRemoveOneTransformation() 114 Assert.assertEquals("stretch", trans.toString()); in testRemoveOneTransformation() 126 Assert.assertEquals("stretch crop", trans.toString()); in testRemoveInvalidTransformation() [all …]
|
D | BipImageDescriptorTest.java | 46 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_encodingConstants() 62 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_encodingObject() 77 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_proprietaryEncoding() 93 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_transformationConstantStretch() 109 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_transformationConstantCrop() 125 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_transformationConstantFill() 142 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_transformationConstantCropThenFill() 156 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_noSize() 171 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_useMaxSize() 188 Assert.assertEquals(expected, descriptor.toString()); in testBuildImageDescriptor_allButSize() [all …]
|
/packages/apps/Camera2/src/com/android/camera/debug/ |
D | Log.java | 59 public String toString() { in toString() method in Log.Tag 66 android.util.Log.d(tag.toString(), msg); in d() 72 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg)); in d() 78 android.util.Log.d(tag.toString(), LogUtil.addTags(instance, msg, tags)); in d() 84 android.util.Log.d(tag.toString(), msg, tr); in d() 90 android.util.Log.e(tag.toString(), msg); in e() 96 android.util.Log.e(tag.toString(), LogUtil.addTags(instance, msg)); in e() 102 android.util.Log.e(tag.toString(), LogUtil.addTags(instance, msg, tags)); in e() 108 android.util.Log.e(tag.toString(), msg, tr); in e() 114 android.util.Log.i(tag.toString(), msg); in i() [all …]
|
/packages/apps/Settings/src/com/android/settings/homepage/contextualcards/ |
D | SettingsContextualCardProvider.java | 37 .setSliceUri(CustomSliceRegistry.CONTEXTUAL_WIFI_SLICE_URI.toString()) in getContextualCards() 38 .setCardName(CustomSliceRegistry.CONTEXTUAL_WIFI_SLICE_URI.toString()) in getContextualCards() 43 .setSliceUri(CustomSliceRegistry.BLUETOOTH_DEVICES_SLICE_URI.toString()) in getContextualCards() 44 .setCardName(CustomSliceRegistry.BLUETOOTH_DEVICES_SLICE_URI.toString()) in getContextualCards() 49 .setSliceUri(CustomSliceRegistry.LOW_STORAGE_SLICE_URI.toString()) in getContextualCards() 50 .setCardName(CustomSliceRegistry.LOW_STORAGE_SLICE_URI.toString()) in getContextualCards() 55 .setSliceUri(CustomSliceRegistry.BATTERY_FIX_SLICE_URI.toString()) in getContextualCards() 56 .setCardName(CustomSliceRegistry.BATTERY_FIX_SLICE_URI.toString()) in getContextualCards() 60 CustomSliceRegistry.CONTEXTUAL_ADAPTIVE_SLEEP_URI.toString(); in getContextualCards() 69 .setSliceUri(CustomSliceRegistry.FACE_ENROLL_SLICE_URI.toString()) in getContextualCards() [all …]
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogPerfService.cpp | 93 constexpr const char* toString(std::variant<EventType, SwitchMessage> what) { in toString() function 122 constexpr const char* toString(SystemState systemState) { in toString() function 135 std::string WatchdogPerfService::EventMetadata::toString() const { in toString() function in android::automotive::watchdog::WatchdogPerfService::EventMetadata 209 toString(mCurrCollectionEvent), toString(expected)); in start() 223 ALOGI("Starting %s performance data collection", toString(mCurrCollectionEvent)); in start() 270 ALOGI("%s switching from %s to %s", kServiceName, toString(mSystemState), in setSystemState() 271 toString(systemState)); in setSystemState() 285 ALOGE("Current performance data collection event %s != %s", toString(mCurrCollectionEvent), in onBootFinished() 286 toString(expected)); in onBootFinished() 391 !WriteStringToFd(mBoottimeCollection.toString(), fd) || in onDump() [all …]
|
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | MailToTest.java | 47 Log.d("Trace", mailTo_1.toString()); in testParseMailToURI() 53 assertEquals("mailto:?to=chris%40example.com&", mailTo_1.toString()); in testParseMailToURI() 57 Log.d("Trace", mailTo_2.toString()); in testParseMailToURI() 63 String stringUrl = mailTo_2.toString(); in testParseMailToURI() 70 Log.d("Trace", mailTo_3.toString()); in testParseMailToURI() 76 stringUrl = mailTo_3.toString(); in testParseMailToURI() 83 Log.d("Trace", mailTo_4.toString() + " " + mailTo_4.getBody()); in testParseMailToURI() 89 stringUrl = mailTo_4.toString(); in testParseMailToURI() 97 Log.d("Trace", mailTo_5.toString() + mailTo_5.getHeaders().toString() in testParseMailToURI() 104 stringUrl = mailTo_5.toString(); in testParseMailToURI() [all …]
|
/packages/apps/Settings/tests/legacy_unit/src/com/android/settings/bluetooth/ |
D | Utf8ByteLengthFilterTest.java | 43 assertEquals(expectedString1, dest.toString()); in testFilter() 47 assertEquals(expectedString2, dest.toString()); in testFilter() 50 assertEquals(expectedString2, dest.toString()); in testFilter() 54 assertEquals(expectedString3, dest.toString()); in testFilter() 58 assertEquals(expectedString4, dest.toString()); in testFilter() 62 assertEquals(expectedString3, dest.toString()); in testFilter() 66 assertEquals(expectedString5, dest.toString()); in testFilter() 70 assertEquals(expectedString6, dest.toString()); in testFilter() 76 assertEquals(expectedString7, dest.toString()); in testFilter() 80 assertEquals(expectedString8, dest.toString()); in testFilter() [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
D | SpannableStringUtilsTests.java | 125 spannableString.toString(), " ", true /* preserveTrailingEmptySegmengs */); in testSplitCharSequenceWithSpan() 135 assertEquals("", charSequencesFromString[0].toString()); in testSplitCharSequenceWithSpan() 137 assertEquals("", charSequencesFromSpanned[0].toString()); in testSplitCharSequenceWithSpan() 146 assertEquals("a", charSequencesFromString[1].toString()); in testSplitCharSequenceWithSpan() 148 assertEquals("a", charSequencesFromSpanned[1].toString()); in testSplitCharSequenceWithSpan() 157 assertEquals("bcd", charSequencesFromString[2].toString()); in testSplitCharSequenceWithSpan() 159 assertEquals("bcd", charSequencesFromSpanned[2].toString()); in testSplitCharSequenceWithSpan() 168 assertEquals("efg", charSequencesFromString[3].toString()); in testSplitCharSequenceWithSpan() 170 assertEquals("efg", charSequencesFromSpanned[3].toString()); in testSplitCharSequenceWithSpan() 177 assertEquals("hij", charSequencesFromString[4].toString()); in testSplitCharSequenceWithSpan() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipImageProperties.java | 306 public String toString() { in toString() method in BipImageProperties 325 error("Native format " + format.toString() + " is invalid."); in toString() 329 xmlMsgElement.attribute(null, "encoding", encoding.toString()); in toString() 330 xmlMsgElement.attribute(null, "pixel", pixel.toString()); in toString() 332 xmlMsgElement.attribute(null, "size", Integer.toString(size)); in toString() 343 error("Variant format " + format.toString() + " is invalid."); in toString() 347 xmlMsgElement.attribute(null, "encoding", encoding.toString()); in toString() 348 xmlMsgElement.attribute(null, "pixel", pixel.toString()); in toString() 350 xmlMsgElement.attribute(null, "maxsize", Integer.toString(maxSize)); in toString() 353 xmlMsgElement.attribute(null, "transformation", trans.toString()); in toString() [all …]
|
D | BipImageDescriptor.java | 264 String s = toString(); in serialize() 286 public String toString() { in toString() method in BipImageDescriptor 301 xmlMsgElement.attribute(null, "encoding", mEncoding.toString()); in toString() 302 xmlMsgElement.attribute(null, "pixel", mPixel.toString()); in toString() 304 xmlMsgElement.attribute(null, "size", Integer.toString(mSize)); in toString() 307 xmlMsgElement.attribute(null, "maxsize", Integer.toString(mMaxSize)); in toString() 310 xmlMsgElement.attribute(null, "transformation", mTransformation.toString()); in toString() 315 return writer.toString(); in toString() 317 error(e.toString()); in toString() 319 error(e.toString()); in toString() [all …]
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/bluetooth/ |
D | Utf8ByteLengthFilterTest.java | 88 assertThat(dest.toString()).isEqualTo(expectedString1); in exerciseFilter() 92 assertThat(dest.toString()).isEqualTo(expectedString2); in exerciseFilter() 95 assertThat(dest.toString()).isEqualTo(expectedString2); in exerciseFilter() 99 assertThat(dest.toString()).isEqualTo(expectedString3); in exerciseFilter() 103 assertThat(dest.toString()).isEqualTo(expectedString4); in exerciseFilter() 107 assertThat(dest.toString()).isEqualTo(expectedString3); in exerciseFilter() 111 assertThat(dest.toString()).isEqualTo(expectedString5); in exerciseFilter() 115 assertThat(dest.toString()).isEqualTo(expectedString6); in exerciseFilter() 121 assertThat(dest.toString()).isEqualTo(expectedString7); in exerciseFilter() 125 assertThat(dest.toString()).isEqualTo(expectedString8); in exerciseFilter() [all …]
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/tts/ |
D | TtsPlaybackPreferenceControllerTest.java | 124 when(mEnginesHelper.parseLocaleString(VOICE.getLocale().toString())).thenReturn( in setUp() 126 when(mEnginesHelper.parseLocaleString(Locale.CANADA.toString())).thenReturn(Locale.CANADA); in setUp() 127 when(mEnginesHelper.parseLocaleString(Locale.KOREA.toString())).thenReturn(Locale.KOREA); in setUp() 197 Locale.ENGLISH.toString(), in voiceDataCheck_processActivityResult_checkSuccess_hasVoices_populatesPreference() 198 Locale.CANADA.toString(), in voiceDataCheck_processActivityResult_checkSuccess_hasVoices_populatesPreference() 199 Locale.KOREA.toString() in voiceDataCheck_processActivityResult_checkSuccess_hasVoices_populatesPreference() 256 Locale.ENGLISH.toString(), in defaultLanguage_handlePreferenceChanged_passEmptyValue_setsDefault() 257 Locale.CANADA.toString(), in defaultLanguage_handlePreferenceChanged_passEmptyValue_setsDefault() 258 Locale.KOREA.toString() in defaultLanguage_handlePreferenceChanged_passEmptyValue_setsDefault() 279 Locale.ENGLISH.toString(), in defaultLanguage_handlePreferenceChanged_passLocale_setsLocale() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
D | DebugLogUtils.java | 36 return null == o ? "null" : o.toString(); in s() 60 sb.append(frames[j].toString() + "\n"); in getStackTrace() 63 return sb.toString(); in getStackTrace() 75 sb.append(frames[j].toString() + "\n"); in getStackTrace() 77 return sb.toString(); in getStackTrace() 92 sb.append(s(o).toString()); in l() 95 Log.e(TAG, sb.toString()); in l() 109 sb.append(s(o).toString()); in r() 113 Log.e(TAG, sb.toString()); in r()
|
/packages/services/Car/cpp/watchdog/server/tests/ |
D | ProcPidStatTest.cpp | 39 std::string toString(const PidStat& stat) { in toString() function 47 std::string toString(const ProcessStats& stats) { in toString() function 53 stats.vmRssKb, toString(stats.process).c_str()); in toString() 56 StringAppendF(&buffer, "\t\t%s\n", toString(it.second).c_str()); in toString() 62 std::string toString(const std::vector<ProcessStats>& stats) { in toString() function 66 StringAppendF(&buffer, "%s", toString(it).c_str()); in toString() 177 << toString(expected) << "\nActual:\n" in TEST() 178 << toString(actual); in TEST() 229 << toString(expected) << "\nActual:\n" in TEST() 230 << toString(actual); in TEST() [all …]
|
D | IoOveruseConfigsTest.cpp | 87 std::string toString(std::vector<ResourceOveruseConfiguration> configs) { in toString() function 94 StringAppendF(&buffer, "%s", config.toString().c_str()); in toString() 109 std::string toString( in toString() function 118 config.toString().c_str()); in toString() 310 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() 336 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() 382 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() 408 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() 433 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() 454 << "Expected: " << toString(expected) << "Actual:" << toString(actual); in TEST_F() [all …]
|
D | OveruseConfigurationXmlHelperTest.cpp | 99 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST() 137 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST() 157 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST() 202 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST() 250 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST() 280 << "Expected: " << expected.toString() << "\nActual: " << actual->toString(); in TEST()
|