aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-07-25 16:43:30 +0530
committerTakamune Cho <tc012c@att.com>2018-07-26 13:14:16 +0000
commite14cafdaa135d981a6cc6a2e82af5399a140d423 (patch)
tree09c98bfa6437f8adc09033c9471c511a8c2d83b0
parentb1f449e42ab42dd8cc338e21dcc5739e7076ff20 (diff)
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 <arundpil@in.ibm.com>
-rw-r--r--src/app/shared/confirmModal/confirm.component.spec.ts59
1 files changed, 59 insertions, 0 deletions
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);
+ }));
+});