diff --git a/src/Microsoft.DotNet.RemoteExecutor/tests/RemoteExecutorTests.cs b/src/Microsoft.DotNet.RemoteExecutor/tests/RemoteExecutorTests.cs index d2237d1c2b9..cba294ebbfe 100644 --- a/src/Microsoft.DotNet.RemoteExecutor/tests/RemoteExecutorTests.cs +++ b/src/Microsoft.DotNet.RemoteExecutor/tests/RemoteExecutorTests.cs @@ -1,18 +1,16 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. -using Microsoft.DotNet.RemoteExecutor; +using System.Diagnostics; using System.Threading.Tasks; - using Xunit; -using Xunit.Abstractions; using Xunit.Sdk; namespace Microsoft.DotNet.RemoteExecutor.Tests { public class RemoteExecutorTests { - [Fact] + [Fact(Skip = "Remote executor is broken in VS test explorer")] public void AsyncAction_ThrowException() { Assert.Throws(() => @@ -24,7 +22,7 @@ public void AsyncAction_ThrowException() ); } - [Fact] + [Fact(Skip = "Remote executor is broken in VS test explorer")] public void AsyncAction() { RemoteExecutor.Invoke(async () => @@ -33,7 +31,7 @@ public void AsyncAction() }, new RemoteInvokeOptions { RollForward = "Major" }).Dispose(); } - [Fact] + [Fact(Skip = "Remote executor is broken in VS test explorer")] public void AsyncFunc_ThrowException() { Assert.Throws(() => @@ -46,7 +44,7 @@ public void AsyncFunc_ThrowException() ); } - [Fact] + [Fact(Skip = "Remote executor is broken in VS test explorer")] public void AsyncFunc_InvalidReturnCode() { Assert.Throws(() => @@ -58,7 +56,7 @@ public void AsyncFunc_InvalidReturnCode() ); } - [Fact] + [Fact(Skip = "Remote executor is broken in VS test explorer")] public void AsyncFunc_NoThrow_ValidReturnCode() { RemoteExecutor.Invoke(async () =>