Rename test projects, files, and classes to Specs#2
Closed
dennisdoomen wants to merge 2 commits into
Closed
Conversation
Capture the scoped impact estimate so the rename can be planned and reviewed with a concrete file count. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Align test project names, test source file names, and test type names from Tests/Test to Specs/Spec, and update solution/build wiring and friend-assembly references so the renamed test suite remains buildable. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Owner
Author
|
Closing this fork PR in favor of the PR opened against the main repository. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR performs the actual test-suite rename from
Test/TeststoSpec/Specs, including test project names, test file names, and test type names, and updates the surrounding wiring so the suite builds under the new naming.Changes
Rename test projects, files, and classes to Specs
The previous state mixed
.Testsnaming throughout test projects, file names, and test type names. This change renames the affected test projects and test assets to.Specs, updates test type names accordingly, and aligns references that depend on test assembly/project names.It also updates supporting wiring impacted by the rename:
Directory.Build.propsInternalsVisibleToentries that target renamed test assembliesNotes
dotnet build fallout.slnxsucceeds after the rename.dotnet test fallout.slnx --no-buildnow only shows environment-sensitive failures unrelated to this rename (local Git parent-directory assumptions and local NuGet global package version expectations).