Skip to content

Commit 039a07d

Browse files
authored
Merge pull request #3 from claboran/develop
Renamed test-project to get it working for Azure Pipelines
2 parents 5b59093 + adf4715 commit 039a07d

File tree

11 files changed

+9
-8
lines changed

11 files changed

+9
-8
lines changed

ForceDotNetJwtCompanion.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForceDotNetJwtCompanion", "ForceDotNetJwtCompanion\ForceDotNetJwtCompanion.csproj", "{F1783972-6494-4793-85D6-98383C0127B2}"
44
EndProject
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForceDotNetJwtCompanionTest", "ForceDotNetJwtCompanionTest\ForceDotNetJwtCompanionTest.csproj", "{2CADC6E3-1FCE-4BF7-A27B-7CE49CFE0F96}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForceDotNetJwtCompanionTests", "ForceDotNetJwtCompanionTests\ForceDotNetJwtCompanionTests.csproj", "{2CADC6E3-1FCE-4BF7-A27B-7CE49CFE0F96}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution

ForceDotNetJwtCompanionTest/ForceDotNetJwtCompanionTest.csproj renamed to ForceDotNetJwtCompanionTests/ForceDotNetJwtCompanionTests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<TargetFramework>net5.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
7+
8+
<RootNamespace>ForceDotNetJwtCompanionTests</RootNamespace>
79
</PropertyGroup>
810

911
<ItemGroup>

ForceDotNetJwtCompanionTest/Tests/AuthenticationClientTests.cs renamed to ForceDotNetJwtCompanionTests/Tests/AuthenticationClientTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
using System;
21
using System.Threading.Tasks;
32
using ForceDotNetJwtCompanion;
43
using ForceDotNetJwtCompanion.Util;
4+
using ForceDotNetJwtCompanionTests.Tests;
55
using Xunit;
6-
using Xunit.Abstractions;
76

8-
namespace ForceDotNetJwtCompanionTest.Tests
7+
namespace ForceDotNetJwtCompanionTests.Tests
98
{
109
public class AuthenticationClientTests : IClassFixture<SfMockAuthServerFixture>
1110
{

ForceDotNetJwtCompanionTest/Tests/JwtTests.cs renamed to ForceDotNetJwtCompanionTests/Tests/JwtTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using ForceDotNetJwtCompanion.Util;
44
using Xunit;
55

6-
namespace ForceDotNetJwtCompanionTest.Tests
6+
namespace ForceDotNetJwtCompanionTests.Tests
77
{
88
public class JwtTests
99
{

ForceDotNetJwtCompanionTest/Tests/KeyHelperTests.cs renamed to ForceDotNetJwtCompanionTests/Tests/KeyHelperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Xunit;
33
using static ForceDotNetJwtCompanion.Util.CommonHelpers;
44

5-
namespace ForceDotNetJwtCompanionTest.Tests
5+
namespace ForceDotNetJwtCompanionTests.Tests
66
{
77
public class KeyHelperTests
88
{

ForceDotNetJwtCompanionTest/Tests/SfMockAuthServerFixture.cs renamed to ForceDotNetJwtCompanionTests/Tests/SfMockAuthServerFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using DotNet.Testcontainers.Containers.WaitStrategies;
66
using Xunit;
77

8-
namespace ForceDotNetJwtCompanionTest.Tests
8+
namespace ForceDotNetJwtCompanionTests.Tests
99
{
1010
/// <summary>
1111
/// SfMockAuthServerFixture

0 commit comments

Comments
 (0)