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

import { LicenseVerificationComponent } from './license-verification.component';

describe('LicenseVerificationComponent', () => {
  let component: LicenseVerificationComponent;
  let fixture: ComponentFixture<LicenseVerificationComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ LicenseVerificationComponent ]
    })
    .compileComponents();

    fixture = TestBed.createComponent(LicenseVerificationComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
