mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
f8eff73690
commit
79b0718d95
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ public class WindowsOnlyDataTestMethod : DataTestMethodAttribute
|
||||||
{
|
{
|
||||||
public override TestResult[] Execute(ITestMethod testMethod)
|
public override TestResult[] Execute(ITestMethod testMethod)
|
||||||
{
|
{
|
||||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
{
|
{
|
||||||
var message = $"Test not executed on other platforms than Windows";
|
var message = $"Test not executed on other platforms than Windows";
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,7 +7,7 @@ public class WindowsOnlyTestMethod : TestMethodAttribute
|
||||||
{
|
{
|
||||||
public override TestResult[] Execute(ITestMethod testMethod)
|
public override TestResult[] Execute(ITestMethod testMethod)
|
||||||
{
|
{
|
||||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
{
|
{
|
||||||
var message = $"Test not executed on other platforms than Windows";
|
var message = $"Test not executed on other platforms than Windows";
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue