mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
import { ObjectCacheService } from '../../core/cache/object-cache.service';
|
|
|
|
export function initMockObjectCacheService(): ObjectCacheService {
|
|
return jasmine.createSpyObj('objectCacheService', {
|
|
hasBySelfLink: true,
|
|
});
|
|
}
|