Project

General

Profile

1
import { TestBed } from '@angular/core/testing';
2

    
3
import { GenericRestService } from './generic-rest.service';
4

    
5
describe('GenericRestService', () => {
6
  let service: GenericRestService<any>;
7

    
8
  beforeEach(() => {
9
    TestBed.configureTestingModule({});
10
    service = TestBed.inject(GenericRestService);
11
  });
12

    
13
  it('should be created', () => {
14
    expect(service).toBeTruthy();
15
  });
16
});
(9-9/21)