All files / src/testing-helpers testing-helpers.module.hlpr.ts

100% Statements 25/25
100% Branches 0/0
100% Functions 1/1
100% Lines 16/16
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 30 31 32 33 341x   1x 1x 1x 1x 1x     1x 1x                             1x 1x 1x 1x 1x 1x 1x 1x  
import { NgModule } from '@angular/core';
 
import { DummyAppComponent } from './router-testing/dummy-app-component-for-router-outlet.hlpr';
import { DummyTargetComponent } from './router-testing/dummy-component-for-router-target.hlpr';
import { setupMockStore, addtoMockStore } from './ngRedux-testing/setup-mock-store.hlpr';
import { setupMockFileService, setupMockFormatService, setupMockPageActions } from './data.service-helpers/data.service-helpers.hlpr';
import { subscribeAndExpectAllValues,
         subscribeAndExpectValue,
         subscribeAndExpectNoDataEmitted } from './subscribeAndExpect/subscribeAndExpect.hlpr';
import { mockFactory } from './mock-factory/mock-factory.hlpr';
import { MockError, MockResponse } from './http.test.helpers/http.test.hlpr';
 
@NgModule({
  imports: [ ],
  declarations: [
    DummyAppComponent,
    DummyTargetComponent,
  ],
  exports: [
    DummyAppComponent,
    DummyTargetComponent,
  ],
  providers: [
  ],
})
export class TestingHelpersModule {}
export { DummyAppComponent };
export { DummyTargetComponent };
export { setupMockStore, addtoMockStore };
export { setupMockFileService, setupMockFormatService, setupMockPageActions };
export { subscribeAndExpectAllValues, subscribeAndExpectValue, subscribeAndExpectNoDataEmitted };
export { mockFactory };
export { MockError, MockResponse };