Skip to content

Commit

Permalink
Added SkipMono for all limited client cert tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackGad committed May 6, 2020
1 parent 18d35d5 commit 899dbca
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void ClientCertAddCommand_Fail_StoreCertificateNotExist()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertAddCommand_Success_FileCertificateAbsolute()
{
// Arrange
Expand Down Expand Up @@ -242,7 +242,7 @@ public void ClientCertAddCommand_Success_FileCertificateNotExistForce()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertAddCommand_Success_FileCertificateRelative()
{
// Arrange
Expand Down Expand Up @@ -283,7 +283,7 @@ public void ClientCertAddCommand_Success_FileCertificateRelative()
}
}

[PlatformFact(Platform.Windows, Platform.Linux)]
[PlatformFact(Platform.Windows, Platform.Linux, SkipMono = true)]
public void ClientCertAddCommand_Success_StoreCertificate()
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void ClientCertAddCommand_Fail_NoSourceSpecified()
Assert.Equal(1, exitCode);
}

[PlatformFact(Platform.Windows, Platform.Linux)]
[PlatformFact(Platform.Windows, Platform.Linux, SkipMono = true)]
public void ClientCertAddCommand_Fail_StoreCertificateNotExist()
{
// Arrange
Expand Down Expand Up @@ -154,7 +154,7 @@ public void ClientCertAddCommand_Fail_StoreCertificateNotExist()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertAddCommand_Success_FileCertificateAbsolute()
{
// Arrange
Expand Down Expand Up @@ -190,7 +190,7 @@ public void ClientCertAddCommand_Success_FileCertificateAbsolute()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertAddCommand_Success_FileCertificateNotExistForce()
{
// Arrange
Expand Down Expand Up @@ -229,7 +229,7 @@ public void ClientCertAddCommand_Success_FileCertificateNotExistForce()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertAddCommand_Success_FileCertificateRelative()
{
// Arrange
Expand Down Expand Up @@ -269,7 +269,7 @@ public void ClientCertAddCommand_Success_FileCertificateRelative()
}
}

[PlatformFact(Platform.Windows, Platform.Linux)]
[PlatformFact(Platform.Windows, Platform.Linux, SkipMono = true)]
public void ClientCertAddCommand_Success_StoreCertificate()
{
// Arrange
Expand Down Expand Up @@ -382,7 +382,7 @@ public void ClientCertListCommand_Success_EmptyList()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertListCommand_Success_NotEmptyList()
{
// Arrange
Expand Down Expand Up @@ -451,7 +451,7 @@ public void ClientCertRemoveCommand_Failed_NotExist()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertRemoveCommand_Success_ItemCertificate()
{
// Arrange
Expand Down Expand Up @@ -578,7 +578,7 @@ public void ClientCertUpdateCommand_Fail_CertificateSourceNotSpecified()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertUpdateCommand_Success_FileCertificateForce()
{
var updatedPath = "MyCertificateSecond.pfx";
Expand Down Expand Up @@ -678,7 +678,7 @@ public void ClientCertUpdateCommand_Success_StoreCertificateForce()
}
}

[PlatformFact(Platform.Windows)]
[PlatformFact(Platform.Windows, SkipMono = true)]
public void ClientCertUpdatedCommand_Fail_FileCertificateNotExist()
{
var updatedPath = "MyCertificateSecond.pfx";
Expand Down Expand Up @@ -754,7 +754,7 @@ public void ClientCertUpdatedCommand_Fail_NotConfigured()
}
}

[PlatformFact(Platform.Windows, Platform.Linux)]
[PlatformFact(Platform.Windows, Platform.Linux, SkipMono = true)]
public void ClientCertUpdatedCommand_Fail_StoreCertificateNotExist()
{
var updatedStoreLocation = StoreLocation.CurrentUser;
Expand Down

0 comments on commit 899dbca

Please sign in to comment.