Files
angular-docs-cn/modules/@angular/compiler/test/spies.ts
T

16 lines
438 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {ResourceLoader} from '@angular/compiler/src/resource_loader';
2015-11-05 14:07:57 -08:00
2016-09-27 17:12:25 -07:00
import {SpyObject} from '@angular/core/testing/testing_internal';
2015-11-05 14:07:57 -08:00
export class SpyResourceLoader extends SpyObject {
constructor() { super(ResourceLoader); }
}