All files / src/services/environment environment.service.mock.ts

100% Statements 23/23
100% Branches 0/0
100% Functions 0/0
100% Lines 22/22

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29          1x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x 105x    
import { Injectable } from '@angular/core';
 
import { Environment } from './environment.service';
 
@Injectable()
export class EnvironmentServiceMock implements Environment {
  public articleApiBaseUrl = 'http://api.localhost/articles';
  public databaseApiBaseUrl = 'http://api.localhost/databases';
  public friendApiBaseUrl = 'http://api.localhost/friends';
  public gameApiBaseUrl = 'http://api.localhost/games';
  public gameAuthorizationApiBaseUrl = 'http://api.localhost/game-authorzations';
  public gameServerApiBaseUrl = 'http://api.localhost/game-servers';
  public groupApiBaseUrl = 'http://api.localhost/groups';
  public groupInvitationApiBaseUrl = 'http://api.localhost/group-invitations';
  public ignorationApiBaseUrl = 'http://api.localhost/ignorations';
  public loginApiBaseUrl = 'http://api.localhost/logins';
  public matchApiBaseUrl = 'http://api.localhost/matches';
  public messageApiBaseUrl = 'http://api.localhost/messages';
  public namespaceApiBaseUrl = 'http://api.localhost/namespaces';
  public passwordResetApiBaseUrl = 'http://api.localhost/password-resets';
  public queueApiBaseUrl = 'http://api.localhost/queues';
  public queueMemberApiBaseUrl = 'http://api.localhost/queue-members';
  public refreshTokenApiBaseUrl = 'http://api.localhost/refresh-tokens';
  public buildApiBaseUrl = 'http://api.localhost/builds';
  public userApiBaseUrl = 'http://api.localhost/users';
  public webSocketApiBaseUrl = 'http://api.localhost/web-sockets';
  public workflowApiBaseUrl = 'http://api.localhost/workflows';
}