added spec file for confirm.component 93/57493/2
authorArundathi Patil <arundpil@in.ibm.com>
Wed, 25 Jul 2018 11:13:30 +0000 (16:43 +0530)
committerTakamune Cho <tc012c@att.com>
Thu, 26 Jul 2018 13:14:16 +0000 (13:14 +0000)
Wrote test cases for confirm modal component.

Issue-ID: APPC-1064
Change-Id: I6cac13f52730c31cd98e14fc8874012224b938f9
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
src/app/shared/confirmModal/confirm.component.spec.ts [new file with mode: 0644]

diff --git a/src/app/shared/confirmModal/confirm.component.spec.ts b/src/app/shared/confirmModal/confirm.component.spec.ts
new file mode 100644 (file)
index 0000000..db7877f
--- /dev/null
@@ -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);
+    }));
+});