mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
adding service test placeholders
This commit is contained in:
parent
f53c537a9d
commit
06e45f2a95
30
frontend/app/admin/admin.service.spec.ts
Normal file
30
frontend/app/admin/admin.service.spec.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import {it, inject, beforeEachProviders} from "@angular/core/testing";
|
||||
import {BaseRequestOptions, Http} from "@angular/http";
|
||||
import {MockBackend} from "@angular/http/testing";
|
||||
import {provide} from "@angular/core";
|
||||
import "rxjs/Rx";
|
||||
import {NetworkService} from "../model/network/network.service";
|
||||
import {AdminService} from "./admin.service";
|
||||
|
||||
|
||||
describe('AdminService', () => {
|
||||
|
||||
|
||||
beforeEachProviders(() => [
|
||||
MockBackend,
|
||||
BaseRequestOptions,
|
||||
provide(Http, {
|
||||
useFactory: (backend, options) => {
|
||||
return new Http(backend, options);
|
||||
}, deps: [MockBackend, BaseRequestOptions]
|
||||
}),
|
||||
NetworkService,
|
||||
AdminService
|
||||
]);
|
||||
|
||||
|
||||
it('placeholder test', inject([], () => {
|
||||
expect(true).toBe(true);
|
||||
}));
|
||||
|
||||
});
|
30
frontend/app/gallery/gallery.service.spec.ts
Normal file
30
frontend/app/gallery/gallery.service.spec.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import {it, inject, beforeEachProviders} from "@angular/core/testing";
|
||||
import {BaseRequestOptions, Http} from "@angular/http";
|
||||
import {MockBackend} from "@angular/http/testing";
|
||||
import {provide} from "@angular/core";
|
||||
import "rxjs/Rx";
|
||||
import {NetworkService} from "../model/network/network.service";
|
||||
import {GalleryService} from "./gallery.service";
|
||||
|
||||
|
||||
describe('GalleryService', () => {
|
||||
|
||||
|
||||
beforeEachProviders(() => [
|
||||
MockBackend,
|
||||
BaseRequestOptions,
|
||||
provide(Http, {
|
||||
useFactory: (backend, options) => {
|
||||
return new Http(backend, options);
|
||||
}, deps: [MockBackend, BaseRequestOptions]
|
||||
}),
|
||||
NetworkService,
|
||||
GalleryService
|
||||
]);
|
||||
|
||||
|
||||
it('placeholder test', inject([], () => {
|
||||
expect(true).toBe(true);
|
||||
}));
|
||||
|
||||
});
|
30
frontend/app/gallery/search/autocomplete.service.spec.ts
Normal file
30
frontend/app/gallery/search/autocomplete.service.spec.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import {it, inject, beforeEachProviders} from "@angular/core/testing";
|
||||
import {BaseRequestOptions, Http} from "@angular/http";
|
||||
import {MockBackend} from "@angular/http/testing";
|
||||
import {provide} from "@angular/core";
|
||||
import "rxjs/Rx";
|
||||
import {AutoCompleteService} from "./autocomplete.service";
|
||||
import {NetworkService} from "../../model/network/network.service";
|
||||
|
||||
|
||||
describe('AutoCompleteService', () => {
|
||||
|
||||
|
||||
beforeEachProviders(() => [
|
||||
MockBackend,
|
||||
BaseRequestOptions,
|
||||
provide(Http, {
|
||||
useFactory: (backend, options) => {
|
||||
return new Http(backend, options);
|
||||
}, deps: [MockBackend, BaseRequestOptions]
|
||||
}),
|
||||
NetworkService,
|
||||
AutoCompleteService
|
||||
]);
|
||||
|
||||
|
||||
it('placeholder test', inject([], () => {
|
||||
expect(true).toBe(true);
|
||||
}));
|
||||
|
||||
});
|
Loading…
Reference in New Issue
Block a user