Home
last modified time | relevance | path

Searched refs:expectedText (Results 1 – 11 of 11) sorted by relevance

/third_party/node/test/fixtures/wpt/FileAPI/support/
Dsend-file-formdata-helper.js74 const expectedText = [ variable
93 formDataText.startsWith(expectedText),
94 … `Unexpected multipart-shaped form data received:\n${formDataText}\nExpected:\n${expectedText}`,
Dsend-file-form-helper.js252 const expectedText = [ variable
277 formDataText.startsWith(expectedText),
280 }\nExpected:\n${expectedText}`);
/third_party/typescript/tests/cases/fourslash/
DsmartIndentOnUnclosedFunctionDeclaration04.ts6 …Line(marker: string, indentation: number, positionWorkaround: number, expectedText: string): void {
11 verify.textAtCaretIs(expectedText);
Dfourslash.ts331 …rkerName: string | FourSlashInterface.Marker, expectedOffset: number, expectedText: string, option…
333 …rangeAfterCodeFix(expectedText: string, includeWhiteSpace?: boolean, errorCode?: number, index?: n…
336 rangeIs(expectedText: string, includeWhiteSpace?: boolean): void;
373 quickInfoIs(expectedText: string, expectedDocumentation?: string): void;
375 …quickInfoAt(markerName: string | Range, expectedText?: string, expectedDocumentation?: string): vo…
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DJsonFormatterTest.cs78 var expectedText = "{ 'value': 'FOO1' }"; in EnumAllowAlias()
79 AssertJson(expectedText, actualText); in EnumAllowAlias()
92 var expectedText = "{ " + in EnumAsInt()
96 AssertJson(expectedText, actualText); in EnumAsInt()
130 var expectedText = "{ " + in AllSingleFields()
154 AssertJson(expectedText, actualText); in AllSingleFields()
259 string expectedText = "{ 'singleDouble': " + expectedValueText + " }"; in DoubleRepresentations()
260 AssertJson(expectedText, actualText); in DoubleRepresentations()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
DTestBidiTransform.java85 String expectedText = bidi.writeReordered(Bidi.REORDER_DEFAULT); in autoDirectionTest() local
87 expectedText = Bidi.writeReverse(expectedText, Bidi.OUTPUT_REVERSE); in autoDirectionTest()
89 logResultsForDir(inText, outText, expectedText, inLevel, outLevel); in autoDirectionTest()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestBidiTransform.java82 String expectedText = bidi.writeReordered(Bidi.REORDER_DEFAULT); in autoDirectionTest() local
84 expectedText = Bidi.writeReverse(expectedText, Bidi.OUTPUT_REVERSE); in autoDirectionTest()
86 logResultsForDir(inText, outText, expectedText, inLevel, outLevel); in autoDirectionTest()
/third_party/typescript/src/harness/
DfourslashInterfaceImpl.ts250 public quickInfoIs(expectedText: string, expectedDocumentation?: string) {
251 this.state.verifyQuickInfoString(expectedText, expectedDocumentation);
254 …public quickInfoAt(markerName: string | FourSlash.Range, expectedText: string, expectedDocumentati…
255 this.state.verifyQuickInfoAt(markerName, expectedText, expectedDocumentation);
435 …TemplateAt(marker: string | FourSlash.Marker, expectedOffset: number, expectedText: string, option…
437 …this.state.verifyDocCommentTemplate({ newText: expectedText.replace(/\r?\n/g, "\r\n"), caretOffset…
445 …public rangeAfterCodeFix(expectedText: string, includeWhiteSpace?: boolean, errorCode?: number, in…
446 this.state.verifyRangeAfterCodeFix(expectedText, includeWhiteSpace, errorCode, index);
457 public rangeIs(expectedText: string, includeWhiteSpace?: boolean): void {
458 this.state.verifyRangeIs(expectedText, includeWhiteSpace);
DfourslashImpl.ts1340 …public verifyQuickInfoAt(markerName: string | Range, expectedText: string, expectedDocumentation?:…
1344 this.verifyQuickInfoString(expectedText, expectedDocumentation);
1353 const [expectedText, expectedDocumentation] = text; constant
1354 this.verifyQuickInfoAt(name, expectedText, expectedDocumentation);
1363 public verifyQuickInfoString(expectedText: string, expectedDocumentation?: string) {
1371 … assert.equal(actualQuickInfoText, expectedText, this.messageAtLastKnownMarker("quick info text"));
2832 public verifyRangeIs(expectedText: string, includeWhiteSpace?: boolean) {
2833 … this.verifyTextMatches(this.rangeText(this.getOnlyRange()), !!includeWhiteSpace, expectedText);
2844 … private verifyTextMatches(actualText: string, includeWhitespace: boolean, expectedText: string) {
2846 if (removeWhitespace(actualText) !== removeWhitespace(expectedText)) {
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dregextst.cpp255 UText expectedText = UTEXT_INITIALIZER; in assertUText() local
256 utext_openUTF8(&expectedText, expected, -1, &status); in assertUText()
261 if(utext_nativeLength(&expectedText)==0 && (strlen(expected)!=0)) { in assertUText()
266 if (!testUTextEqual(&expectedText, actual)) { in assertUText()
270 utextToPrintable(expectedBuf, UPRV_LENGTHOF(expectedBuf), &expectedText); in assertUText()
271 …\"%s\" (%d chars)", file, line, expectedBuf, (int)utext_nativeLength(&expectedText), buf, (int)ute… in assertUText()
273 utext_close(&expectedText); in assertUText()
281 UText expectedText = UTEXT_INITIALIZER; in assertUTextInvariant() local
282 regextst_openUTF8FromInvariant(&expectedText, expected, -1, &status); in assertUTextInvariant()
288 if (!testUTextEqual(&expectedText, actual)) { in assertUTextInvariant()
[all …]
Dtranstst.cpp4749 UnicodeString expectedText(latinText); in TestThai() local
4750 expectedText = expectedText.unescape(); in TestThai()
4751 expect(*tr, xlitText, expectedText); in TestThai()