blob: bec69556a858b556fa13ce8fdc8312470f49d649 [file] [log] [blame]
/* tslint:disable:no-unused-variable */
import { TestBed, async, inject } from '@angular/core/testing';
import { NotificationSearchSortService } from './notification-search-sort.service';
describe('NotificationSearchSortService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [NotificationSearchSortService]
});
});
it('should ...', inject([NotificationSearchSortService], (service: NotificationSearchSortService) => {
expect(service).toBeTruthy();
}));
});