当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript TestInstantiationService.stubPromise方法代码示例

本文整理汇总了TypeScript中vs/platform/instantiation/test/common/instantiationServiceMock.TestInstantiationService.stubPromise方法的典型用法代码示例。如果您正苦于以下问题:TypeScript TestInstantiationService.stubPromise方法的具体用法?TypeScript TestInstantiationService.stubPromise怎么用?TypeScript TestInstantiationService.stubPromise使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/platform/instantiation/test/common/instantiationServiceMock.TestInstantiationService的用法示例。


在下文中一共展示了TestInstantiationService.stubPromise方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: setup

	setup(() => {
		instantiationService = new TestInstantiationService();
		instantiationService.stub(ITelemetryService, NullTelemetryService);
		instantiationService.stub(IModelService, stubModelService(instantiationService));
		instantiationService.stubPromise(IReplaceService, {});
		instantiationService.stubPromise(IReplaceService, 'replace', null);
	});
开发者ID:developers23,项目名称:vscode,代码行数:7,代码来源:searchResult.test.ts

示例2: test

	test('replaceAll should remove all file matches', function () {
		instantiationService.stubPromise(IReplaceService, 'replace', null);
		let testObject = aSearchResult();
		testObject.add([aRawMatch('file://c:/1', aLineMatch('preview 1')), aRawMatch('file://c:/2', aLineMatch('preview 2'))]);

		testObject.replaceAll(null);

		assert.ok(testObject.isEmpty());
	});
开发者ID:FabianLauer,项目名称:vscode,代码行数:9,代码来源:searchResult.test.ts

示例3: test

	test('replace should remove the file match', function () {
		instantiationService.stubPromise(IReplaceService, 'replace', null);
		let testObject = aSearchResult();
		testObject.add([
			aRawMatch('file://c:/1',
				new TextSearchResult('preview 1', lineOneRange))]);

		testObject.replace(testObject.matches()[0]);

		assert.ok(testObject.isEmpty());
	});
开发者ID:developers23,项目名称:vscode,代码行数:11,代码来源:searchResult.test.ts

示例4: test

	test('replaceAll should remove all file matches', function () {
		const voidPromise = Promise.resolve(null);
		instantiationService.stubPromise(IReplaceService, 'replace', voidPromise);
		const testObject = aSearchResult();
		testObject.add([
			aRawMatch('file://c:/1',
				new TextSearchMatch('preview 1', lineOneRange)),
			aRawMatch('file://c:/2',
				new TextSearchMatch('preview 2', lineOneRange))]);

		testObject.replaceAll(null!);

		return voidPromise.then(() => assert.ok(testObject.isEmpty()));
	});
开发者ID:PKRoma,项目名称:vscode,代码行数:14,代码来源:searchResult.test.ts


注:本文中的vs/platform/instantiation/test/common/instantiationServiceMock.TestInstantiationService.stubPromise方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。