Skip to content

Commit 5a9bc4d

Browse files
authored
Onboard Installer core-sdk-tasks tests to Helix (#42243)
2 parents 4a66665 + be6323f commit 5a9bc4d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/UnitTests.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<SDKCustomXUnitProject Condition="'$(RunAoTTests)' != 'true'" Include="**\*.Tests.csproj" Exclude="**\*.AoT.Tests.csproj;**\core-sdk-tasks.Tests.csproj;TestAssets\**\*.Tests.csproj" />
15+
<SDKCustomXUnitProject Condition="'$(RunAoTTests)' != 'true'" Include="**\*.Tests.csproj" Exclude="**\*.AoT.Tests.csproj;TestAssets\**\*.Tests.csproj" />
1616
<!--containers tests end with UnitTests and IntegrationTests, therefore included manually -->
1717
<SDKCustomXUnitProject Condition="'$(RunAoTTests)' != 'true'" Include="containerize.UnitTests\containerize.UnitTests.csproj" />
1818
<SDKCustomXUnitProject Condition="'$(RunAoTTests)' != 'true' And $(_AGENTOSNAME) != 'Windows_NT_FullFramework'" Include="Microsoft.NET.Build.Containers.IntegrationTests\Microsoft.NET.Build.Containers.IntegrationTests.csproj" />

test/core-sdk-tasks.Tests/CalculateTemplateVerionsTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Microsoft.DotNet.Cli.Build;
22

3-
namespace EndToEnd
3+
namespace Microsoft.CoreSdkTasks.Tests
44
{
5-
public class CalculateTemplateVersionsTests
5+
public class CalculateTemplateVersionsTests(ITestOutputHelper log) : SdkTest(log)
66
{
77
[Fact]
88
public void WhenAspNetCoreTemplateMajorVersionLowerthan3ItCanCalculateTemplateVersionsInStableBuilds()

test/core-sdk-tasks.Tests/GenerateDefaultRuntimeFrameworkVersionTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Microsoft.DotNet.Cli.Build;
22

3-
namespace EndToEnd
3+
namespace Microsoft.CoreSdkTasks.Tests
44
{
5-
public class GenerateDefaultRuntimeFrameworkVersionTests
5+
public class GenerateDefaultRuntimeFrameworkVersionTests(ITestOutputHelper log) : SdkTest(log)
66
{
77
[Theory]
88
[InlineData("3.0.0-rtm", "3.0.0-rtm")]

0 commit comments

Comments
 (0)