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

import { AdrSettingsComponent } from './adr-settings.component';

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

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

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

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