1 import { ComponentFixture, TestBed } from '@angular/core/testing';
3 import { configureTestBed, i18nProviders } from '../../../../testing/unit-test-helper';
4 import { CdTableSelection } from '../../../shared/models/cd-table-selection';
5 import { SharedModule } from '../../../shared/shared.module';
6 import { RgwBucketDetailsComponent } from './rgw-bucket-details.component';
8 describe('RgwBucketDetailsComponent', () => {
9 let component: RgwBucketDetailsComponent;
10 let fixture: ComponentFixture<RgwBucketDetailsComponent>;
13 declarations: [RgwBucketDetailsComponent],
14 imports: [SharedModule],
15 providers: [i18nProviders]
19 fixture = TestBed.createComponent(RgwBucketDetailsComponent);
20 component = fixture.componentInstance;
21 component.selection = new CdTableSelection();
22 fixture.detectChanges();
25 it('should create', () => {
26 expect(component).toBeTruthy();