-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure tests and get them working under .NET 6.0
- Loading branch information
1 parent
6930a15
commit f1efa42
Showing
10 changed files
with
65 additions
and
141 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
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
src/testcentric.extensibility.fakes/TestCentric.Extensibility.FakeExtensions.csproj
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net20;net462;netstandard2.0</TargetFrameworks> | ||
<RootNamespace>TestCentric.Extensibility</RootNamespace> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>testcentric.snk</AssemblyOriginatorKeyFile> | ||
<OutputPath>..\..\bin\$(Configuration)\fakes</OutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\TestCentric.Extensibility.Api\TestCentric.Extensibility.Api.csproj" /> | ||
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-beta5" /> | ||
<PackageReference Include="NUnit.Engine.Api" Version="3.16.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Binary file not shown.
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
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
3 changes: 1 addition & 2 deletions
3
src/testcentric.extensibility.tests/Properties/launchSettings.json
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,8 +1,7 @@ | ||
{ | ||
"profiles": { | ||
"TestCentric.Extensibility.Tests": { | ||
"commandName": "Project", | ||
"commandLineArgs": "--test TestCentric.Extensibility.ExtensionManagerTests" | ||
"commandName": "Project" | ||
} | ||
} | ||
} |
3 changes: 1 addition & 2 deletions
3
src/testcentric.extensibility.tests/testcentric.extensibility.tests.addins
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 @@ | ||
# Used for unit testing - not part of distributed package | ||
testcentric.extensibility.tests.dll | ||
testcentric.extensibility.tests.exe | ||
../../fakes/*/TestCentric.Extensibility.FakeExtensions.dll |
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