mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
22 lines
1.1 KiB
TypeScript
22 lines
1.1 KiB
TypeScript
export class SectionsServiceStub {
|
|
|
|
checkSectionErrors = jasmine.createSpy('checkSectionErrors');
|
|
dispatchRemoveSectionErrors = jasmine.createSpy('dispatchRemoveSectionErrors');
|
|
dispatchSetSectionFormId = jasmine.createSpy('dispatchSetSectionFormId');
|
|
getSectionData = jasmine.createSpy('getSectionData');
|
|
getSectionErrors = jasmine.createSpy('getSectionErrors');
|
|
getSectionState = jasmine.createSpy('getSectionState');
|
|
isSectionValid = jasmine.createSpy('isSectionValid');
|
|
isSectionEnabled = jasmine.createSpy('isSectionEnabled');
|
|
isSectionReadOnly = jasmine.createSpy('isSectionReadOnly');
|
|
isSectionAvailable = jasmine.createSpy('isSectionAvailable');
|
|
isSectionTypeAvailable = jasmine.createSpy('isSectionTypeAvailable');
|
|
isSectionType = jasmine.createSpy('isSectionType');
|
|
addSection = jasmine.createSpy('addSection');
|
|
removeSection = jasmine.createSpy('removeSection');
|
|
updateSectionData = jasmine.createSpy('updateSectionData');
|
|
setSectionError = jasmine.createSpy('setSectionError');
|
|
setSectionStatus = jasmine.createSpy('setSectionStatus');
|
|
computeSectionConfiguredMetadata = jasmine.createSpy('computeSectionConfiguredMetadata');
|
|
}
|