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

import { PageAuthorizationService } from './page-authorization.service';

describe('PageAuthorizationService', () => {
  let service: PageAuthorizationService;

  beforeEach(() => {
    TestBed.configureTestingModule({});
    service = TestBed.inject(PageAuthorizationService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});
