-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(factories): remove deprecated factories (#1381)
BREAKING CHANGE: removed the Factory (and children) from the stryker-api package. Use DI to ensure classes are created. For more information, see https://github.com/stryker-mutator/stryker-handbook/blob/master/stryker/api/plugins.md#dependency-injection
- Loading branch information
Showing
22 changed files
with
5 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export { default as Config } from './src/config/Config'; | ||
export { default as ConfigEditor } from './src/config/ConfigEditor'; | ||
export { default as ConfigEditorFactory } from './src/config/ConfigEditorFactory'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export { default as Mutant } from './src/mutant/Mutant'; | ||
export { default as Mutator } from './src/mutant/Mutator'; | ||
export { default as MutatorFactory } from './src/mutant/MutatorFactory'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
export { default as Reporter } from './src/report/Reporter'; | ||
export { default as MutantResult } from './src/report/MutantResult'; | ||
export { default as MutantStatus } from './src/report/MutantStatus'; | ||
export { default as ReporterFactory } from './src/report/ReporterFactory'; | ||
export { default as SourceFile } from './src/report/SourceFile'; | ||
export { default as MatchedMutant } from './src/report/MatchedMutant'; | ||
export { default as ScoreResult } from './src/report/ScoreResult'; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
packages/stryker-api/src/test_framework/TestFrameworkFactory.ts
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
packages/stryker-api/src/test_framework/TestFrameworkSettings.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
packages/stryker-api/test/unit/mutant/MutantFactorySpec.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
export { default as TestFramework } from './src/test_framework/TestFramework'; | ||
export { default as TestSelection } from './src/test_framework/TestSelection'; | ||
export { default as TestFrameworkFactory } from './src/test_framework/TestFrameworkFactory'; | ||
export { default as TestFrameworkSettings } from './src/test_framework/TestFrameworkSettings'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
export { default as Transpiler } from './src/transpile/Transpiler'; | ||
export { default as TranspilerFactory } from './src/transpile/TranspilerFactory'; | ||
export { default as TranspilerOptions } from './src/transpile/TranspilerOptions'; |
Oops, something went wrong.