mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { ResponseCacheService } from '../../core/cache/response-cache.service';
|
|
|
|
export function getMockResponseCacheService(): ResponseCacheService {
|
|
return jasmine.createSpyObj('ResponseCacheService', [
|
|
'add',
|
|
'get',
|
|
'has',
|
|
]);
|
|
|
|
}
|