import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormFieldsComponent } from './form-fields.component';
+import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
+import { FormsModule } from '@angular/forms';
+import { HttpClientTestingModule } from '@angular/common/http/testing';
+import { MatDialogModule, MatSnackBarModule } from '@angular/material';
+import { CommonModule } from '@angular/common';
describe('FormFieldsComponent', () => {
let component: FormFieldsComponent;
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ FormFieldsComponent ]
+ schemas:[CUSTOM_ELEMENTS_SCHEMA],
+ declarations: [ FormFieldsComponent ],
+ imports:[FormsModule,HttpClientTestingModule,MatDialogModule,MatSnackBarModule]
})
.compileComponents();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
+
+ it('should test isFirst method',()=>{
+ expect(component.isFirst(0)).toBe(true);
+ expect(component.isFirst(2)).toBe(false);
+ });
+
+ it('should test isLast method', () =>{
+ component.formFieldsListObj.length = 12;
+ expect(component.isLast(15)).toEqual(false);
+ });
+
+ it('should test ngDoCheck method',()=>{
+ component.sqlAsDefaultValue=true;
+ if(component.sqlAsDefaultValue==true){
+ expect(component.showDefaultSQLOption).toBe(false);
+ }
+ else{
+ expect(component.showDefaultSQLOption).toBe(true);
+ }
+ });
+
});