當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript textBufferAutoTestUtils.getRandomInt函數代碼示例

本文整理匯總了TypeScript中vs/editor/test/common/model/linesTextBuffer/textBufferAutoTestUtils.getRandomInt函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript getRandomInt函數的具體用法?TypeScript getRandomInt怎麽用?TypeScript getRandomInt使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了getRandomInt函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: generateRandomChunks

function generateRandomChunks(file: string): string[] {
	let result: string[] = [];
	let cnt = getRandomInt(1, 20);

	let maxOffset = file.length;

	while (cnt > 0 && maxOffset > 0) {

		let offset = getRandomInt(0, maxOffset);
		result.unshift(file.substring(offset, maxOffset));
		// let length = getRandomInt(0, maxOffset - offset);
		// let text = generateFile(true);

		// result.push({
		// 	offset: offset,
		// 	length: length,
		// 	text: text
		// });

		maxOffset = offset;
		cnt--;
	}
	if (maxOffset !== 0) {
		result.unshift(file.substring(0, maxOffset));
	}
	return result;
}
開發者ID:JarnoNijboer,項目名稱:vscode,代碼行數:27,代碼來源:linesTextBufferBuilderAuto.test.ts

示例2: generateRandomFile

function generateRandomFile(): string {
	let lineCount = getRandomInt(1, 10);
	let mixedEOLSequence = getRandomInt(1, 2) === 1 ? true : false;
	let fixedEOL = getRandomEOLSequence();
	let lines: string[] = [];
	for (let i = 0; i < lineCount; i++) {
		if (i !== 0) {
			if (mixedEOLSequence) {
				lines.push(getRandomEOLSequence());
			} else {
				lines.push(fixedEOL);
			}
		}
		lines.push(getRandomString(0, 10));

	}
	return lines.join('');
}
開發者ID:JarnoNijboer,項目名稱:vscode,代碼行數:18,代碼來源:linesTextBufferBuilderAuto.test.ts

示例3: testRandomFile

function testRandomFile(file: string): boolean {
	let tests = getRandomInt(5, 10);
	for (let i = 0; i < tests; i++) {
		let chunks = generateRandomChunks(file);
		try {
			testModelBuilder(chunks);
		} catch (err) {
			console.log(err);
			console.log(JSON.stringify(chunks));
			return false;
		}
	}
	return true;
}
開發者ID:JarnoNijboer,項目名稱:vscode,代碼行數:14,代碼來源:linesTextBufferBuilderAuto.test.ts

示例4: getRandomInt

			fn: (textBuffer) => {
				for (let i = 0; i < 10; i++) {
					let minLine = 1;
					let maxLine = textBuffer.getLineCount();
					let startLine = getRandomInt(minLine, Math.max(minLine, maxLine - 100));
					let endLine = Math.min(maxLine, startLine + 100);
					for (let j = startLine; j < endLine; j++) {
						let str = textBuffer.getLineContent(j + 1);
						let firstChar = str.charCodeAt(0);
						let lastChar = str.charCodeAt(str.length - 1);
						firstChar = firstChar - lastChar;
						lastChar = firstChar + lastChar;
						firstChar = lastChar - firstChar;
					}
				}
			}
開發者ID:AllureFer,項目名稱:vscode,代碼行數:16,代碼來源:operations.benchmark.ts


注:本文中的vs/editor/test/common/model/linesTextBuffer/textBufferAutoTestUtils.getRandomInt函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。