-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathContainersCollection.cs
More file actions
21 lines (18 loc) · 980 Bytes
/
ContainersCollection.cs
File metadata and controls
21 lines (18 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// <copyright file="ContainersCollection.cs" company="Datadog">
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc.
// </copyright>
#pragma warning disable SA1649 // File name should match first type name (this will just store all the classes)
#pragma warning disable SA1402 // File may only contain a single type (this will just store all the classes)
using Datadog.Trace.TestHelpers.AutoInstrumentation.Containers;
using Xunit;
namespace Datadog.Trace.ClrProfiler.IntegrationTests.Helpers
{
[CollectionDefinition(Name)]
public class AerospikeCollection : ICollectionFixture<AerospikeFixture>
{
public const string Name = "Aerospike";
}
}
#pragma warning restore SA1649 // File name should match first type name
#pragma warning restore SA1402 // File may only contain a single type