import { TestBed, inject } from '@angular/core/testing';

import { RoleService } from './role.service';

describe('RoleService', () => {
    beforeEach(() => {
        TestBed.configureTestingModule({
            providers: [ RoleService ]
        });
    });

    it('should be created', inject([ RoleService ], (service: RoleService) => {
        expect(service).toBeTruthy();
    }));
});
