From e14cafdaa135d981a6cc6a2e82af5399a140d423 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Wed, 25 Jul 2018 16:43:30 +0530 Subject: added spec file for confirm.component Wrote test cases for confirm modal component. Issue-ID: APPC-1064 Change-Id: I6cac13f52730c31cd98e14fc8874012224b938f9 Signed-off-by: Arundathi Patil --- .../shared/confirmModal/confirm.component.spec.ts | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/app/shared/confirmModal/confirm.component.spec.ts (limited to 'src/app/shared/confirmModal/confirm.component.spec.ts') diff --git a/src/app/shared/confirmModal/confirm.component.spec.ts b/src/app/shared/confirmModal/confirm.component.spec.ts new file mode 100644 index 0000000..db7877f --- /dev/null +++ b/src/app/shared/confirmModal/confirm.component.spec.ts @@ -0,0 +1,59 @@ +/* +============LICENSE_START========================================== +=================================================================== +Copyright (C) 2018 IBM Intellectual Property. All rights reserved. +=================================================================== + +Unless otherwise specified, all software contained herein is licensed +under the Apache License, Version 2.0 (the License); +you may not use this software except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +============LICENSE_END============================================ +*/ + +import { async, TestBed } from '@angular/core/testing'; +import { ConfirmComponent } from './confirm.component'; +import { NO_ERRORS_SCHEMA, Component } from '@angular/core'; +import { DialogComponent, DialogService } from 'ng2-bootstrap-modal'; + +describe('ConfirmComponent', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [ + ConfirmComponent + ], + schemas: [NO_ERRORS_SCHEMA], + providers: [DialogService] + + }); + TestBed.compileComponents(); + }); + + it('should create the component', async(() => { + const fixture = TestBed.createComponent(ConfirmComponent); + const app = fixture.debugElement.componentInstance; + expect(app).toBeTruthy(); + })); + + it('should test confirm method with proper return value', async(() => { + const fixture = TestBed.createComponent(ConfirmComponent); + const comp = fixture.debugElement.componentInstance; + comp.confirm(); + expect(comp.result).toBe(true); + })); + + it('should test cancel method with proper return value', async(() => { + const fixture = TestBed.createComponent(ConfirmComponent); + const comp = fixture.debugElement.componentInstance; + comp.cancel(); + expect(comp.result).toBe(false); + })); +}); -- cgit 1.2.3-korg