Home
last modified time | relevance | path

Searched refs:expectStr (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/parallel/
Dtest-zlib-convenience-methods.js31 const expectStr = 'blah'.repeat(8); constant
32 const expectBuf = Buffer.from(expectStr);
44 ['string', expectStr],
60 assert.strictEqual(result.toString(), expectStr,
68 assert.strictEqual(result.toString(), expectStr,
81 assert.strictEqual(result.buffer.toString(), expectStr,
93 assert.strictEqual(decompressed.toString(), expectStr,
102 assert.strictEqual(decompressed.toString(), expectStr,
115 assert.strictEqual(decompressed.buffer.toString(), expectStr,
Dtest-zlib-bytes-read.js6 const expectStr = 'abcdefghijklmnopqrstuvwxyz'.repeat(2); constant
7 const expectBuf = Buffer.from(expectStr);
49 assert.strictEqual(this.bytesWritten, expectStr.length,
67 assert.strictEqual(decompData.toString(), expectStr,
94 assert.strictEqual(decompData.toString(), expectStr,
/third_party/icu/icu4c/source/test/intltest/
Ddadrfmt.cpp153 UnicodeString expectStr= currentCase->getString("str", status); in testConvertDate() local
270 if(output == expectStr) { in testConvertDate()
275 …pectStr, got " + *udbg_escape(output, &result) + " expected " + *udbg_escape(expectStr, &result2)); in testConvertDate()
280 format->parse(expectStr,*cal,pos); in testConvertDate()
288 … logln(caseString+": parse: SUCCESS! "+UnicodeString("gotDate=parseDate=")+expectStr); in testConvertDate()
293 …errln(caseString+": parse: FAIL. parsed '"+expectStr+"' and got "+gotDateStr+", expected " + expec… in testConvertDate()
Dloctest.cpp4609 UnicodeString expectStr(expectExtra?expectExtra:"n/a", ""); in checkRegisteredCollators() local
4649 if(expectExtra != NULL && expectStr == *locStr) { in checkRegisteredCollators()
4651 logln(UnicodeString("Found expected registered collator: ","") + expectStr); in checkRegisteredCollators()
4656 if(expectExtra != NULL && expectStr==*locStr) { in checkRegisteredCollators()
4657 …("As expected, Collator::getAvailableLocales(count) is missing registered collator ") + expectStr); in checkRegisteredCollators()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/parser/
Dparser_test.go183 gotStr, expectStr := got.String(), test.expect.String()
184 if gotStr != expectStr {
185 t.Errorf("While parsing:\n%s\nGot:\n%s\nExpected:\n%s", test.src, gotStr, expectStr)