2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-08-17 12:24:44 -04:00
|
|
|
import {ResourceLoader} from '@angular/compiler/src/resource_loader';
|
2015-11-05 17:07:57 -05:00
|
|
|
|
2017-03-02 15:12:46 -05:00
|
|
|
import {SpyObject} from '@angular/core/testing/src/testing_internal';
|
2015-11-05 17:07:57 -05:00
|
|
|
|
2016-08-17 12:24:44 -04:00
|
|
|
export class SpyResourceLoader extends SpyObject {
|
|
|
|
constructor() { super(ResourceLoader); }
|
2015-12-02 13:35:51 -05:00
|
|
|
}
|