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

import { SuggestiveSectionComponent } from './suggestive-section.component';

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

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

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

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