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

import { PegaDxilMyTextInputComponent } from './pega-dxil-my-text-input.component';

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

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

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

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