Skip to content

Commit 6635887

Browse files
committed
Moving ActivitySource tests to Integration
1 parent 578a11f commit 6635887

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

projects/Test/Unit/TestActivitySource.cs renamed to projects/Test/Integration/TestActivitySource.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,18 @@
88

99
using RabbitMQ.Client;
1010
using RabbitMQ.Client.Events;
11-
11+
using Test.Integration;
1212
using Xunit;
13+
using Xunit.Abstractions;
1314

14-
namespace Test.Unit
15+
namespace Test.Integration
1516
{
16-
public class TestActivitySource
17+
public class TestActivitySource : IntegrationFixture
1718
{
19+
public TestActivitySource(ITestOutputHelper output) : base(output)
20+
{
21+
}
22+
1823
void AssertStringTagEquals(Activity activity, string name, string expected)
1924
{
2025
string tag = activity.GetTagItem(name) as string;

0 commit comments

Comments
 (0)