import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { DeleteRoleConfirmationComponent } from './delete-role-confirmation.component';

describe('DeleteRoleComponent', () => {
    let component: DeleteRoleConfirmationComponent;
    let fixture: ComponentFixture<DeleteRoleConfirmationComponent>;

    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [ DeleteRoleConfirmationComponent ]
        })
            .compileComponents();
    }));

    beforeEach(() => {
        fixture = TestBed.createComponent(DeleteRoleConfirmationComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
    });

    it('should be created', () => {
        expect(component).toBeTruthy();
    });
});
