expect(component.showDefaultSQLOption).toEqual(true);
})
+ it('should test close function', () => {
+ component.close();
+ expect(component.closable).toEqual(false);
+ });
+
+ it('should test closeValidateModal', () => {
+ component.closeValidateModal();
+ expect(component.showSpinner).toEqual(false);
+ });
+
+ it('should test openDialog method', () => {
+ expect(component.openDialog()).toHaveBeenCalled;
+ });
+
+ it('should test openSnackBar method', () => {
+ expect(component.openSnackBar("Just", "for testing")).toHaveBeenCalled;
+ })
+
});