workaround

This commit is contained in:
vinayada1 2021-02-24 12:17:22 -08:00
parent 432a4960c7
commit 1e099fb94e
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ------------------------------------------------------------
// This test has been added as a workaround for https://github.com/NasAmin/trx-parser/issues/111
// to report dummy test results in Dapr.E2E.Test.dll
// Can delete this once this bug is fixed
namespace Dapr.E2E.WorkAround
{
using Xunit;
public class WorkAroundTests
{
[Fact]
public void AVeryCoolWorkAroundTest()
{
Assert.True(true);
}
}
}