2016-08-22 17:17:23 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-08-22 17:17:23 -07:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-30 18:07:40 -07:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
|
|
|
|
* Entry point for all public APIs of the core/testing package.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-22 17:17:23 -07:00
|
|
|
export * from './async';
|
|
|
|
|
export * from './component_fixture';
|
|
|
|
|
export * from './fake_async';
|
2018-08-14 16:27:04 -07:00
|
|
|
export {TestBed, getTestBed, inject, InjectSetupWrapper, withModule} from './test_bed';
|
2021-06-13 10:32:57 +02:00
|
|
|
export {TestComponentRenderer, ComponentFixtureAutoDetect, ComponentFixtureNoNgZone, TestModuleMetadata, TestEnvironmentOptions, ModuleTeardownOptions, TestBedStatic} from './test_bed_common';
|
|
|
|
|
export * from './test_hooks';
|
2016-08-22 17:17:23 -07:00
|
|
|
export * from './metadata_override';
|
2018-08-14 16:27:04 -07:00
|
|
|
export {MetadataOverrider as ɵMetadataOverrider} from './metadata_overrider';
|
2016-08-30 18:07:40 -07:00
|
|
|
export * from './private_export_testing';
|