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

import { NgRomanNumberComponent } from './ng-roman-number.component';

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

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

  beforeEach(() => {
    fixture = TestBed.createComponent(NgRomanNumberComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

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