Files
dspace-angular/src/app/shared/mocks/mock-object-cache.service.ts

8 lines
231 B
TypeScript

import { ObjectCacheService } from '../../core/cache/object-cache.service';
export function initMockObjectCacheService(): ObjectCacheService {
return jasmine.createSpyObj('objectCacheService', {
hasBySelfLink: true,
});
}