aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-09-06 16:06:50 +0530
committerTakamune Cho <tc012c@att.com>2018-09-06 15:07:28 +0000
commitdf84398e0856c9a626f25c80aa8c1b23d8bbca51 (patch)
tree72568471e44926250571c9bd02e9edf027cc1471
parentaaa7a6bff269b7ee7a6277722cee5fd0ae081aa9 (diff)
reference-dataform.util - added spec file
wrote test case for reference-dataform.util service Issue-ID: APPC-1064 Change-Id: I9a2fe38107f7305979ed1997087eab20efadb53e Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts
new file mode 100644
index 0000000..d2ad4c4
--- /dev/null
+++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts
@@ -0,0 +1,50 @@
+/*
+============LICENSE_START==========================================
+===================================================================
+Copyright (C) 2018 IBM.
+===================================================================
+
+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 { inject, TestBed } from '@angular/core/testing';
+import { BaseRequestOptions, Response, ResponseOptions, Http } from '@angular/http';
+import { MockBackend, MockConnection } from '@angular/http/testing';
+import { HttpClientModule } from '@angular/common/http';
+import { ReferenceDataFormUtil } from './reference-dataform.util';
+import { NotificationsService } from 'angular2-notifications';
+import { UtilityService } from '../../../shared/services/utilityService/utility.service';
+import { HttpUtilService } from '../../../shared/services/httpUtil/http-util.service';
+
+fdescribe('ReferenceDataFormUtil', () => {
+ beforeEach(() => {
+ TestBed.configureTestingModule({
+ imports: [HttpClientModule],
+ providers: [ReferenceDataFormUtil, HttpUtilService, NotificationsService, UtilityService, BaseRequestOptions, MockBackend,
+ {
+ provide: Http,
+ useFactory: (backend: MockBackend, defaultOptions: BaseRequestOptions) => {
+ return new Http(backend, defaultOptions);
+ },
+ deps: [MockBackend, BaseRequestOptions],
+ }]
+ });
+ });
+
+ it('should ...', inject([ReferenceDataFormUtil], (service: ReferenceDataFormUtil) => {
+ expect(service).toBeTruthy();
+ }));
+});