Skip to content

Commit ec14313

Browse files
author
Timothy Mothra
authored
[AzureMonitorDistro] new project for integration tests (Azure#35590)
* new project for integration tests * testing ci * fix missing package reference
1 parent 28a60f2 commit ec14313

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

sdk/monitor/Azure.Monitor.OpenTelemetry.AspNetCore/Azure.Monitor.OpenTelemetry.AspNetCore.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Monitor.OpenTelemetry
2222
EndProject
2323
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}"
2424
EndProject
25+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azure.Monitor.OpenTelemetry.AspNetCore.Integration.Tests", "tests\Azure.Monitor.OpenTelemetry.AspNetCore.Integration.Tests\Azure.Monitor.OpenTelemetry.AspNetCore.Integration.Tests.csproj", "{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}"
26+
EndProject
2527
Global
2628
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2729
Debug|Any CPU = Debug|Any CPU
@@ -48,12 +50,17 @@ Global
4850
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
4951
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
5052
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Release|Any CPU.Build.0 = Release|Any CPU
53+
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Debug|Any CPU.Build.0 = Debug|Any CPU
55+
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Release|Any CPU.ActiveCfg = Release|Any CPU
56+
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Release|Any CPU.Build.0 = Release|Any CPU
5157
EndGlobalSection
5258
GlobalSection(SolutionProperties) = preSolution
5359
HideSolutionNode = FALSE
5460
EndGlobalSection
5561
GlobalSection(NestedProjects) = preSolution
5662
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6} = {E8C00D1E-9637-423D-AD28-D40CC01F19BE}
63+
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3} = {E8C00D1E-9637-423D-AD28-D40CC01F19BE}
5764
EndGlobalSection
5865
GlobalSection(ExtensibilityGlobals) = postSolution
5966
SolutionGuid = {901A3302-C365-45ED-959D-662F975A7511}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="Microsoft.NET.Test.Sdk" />
9+
10+
<ProjectReference Include="$(AzureCoreTestFramework)" />
11+
<ProjectReference Include="..\..\src\Azure.Monitor.OpenTelemetry.AspNetCore.csproj" />
12+
</ItemGroup>
13+
14+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
10+
using NUnit.Framework;
11+
12+
namespace Azure.Monitor.OpenTelemetry.AspNetCore.Integration.Tests
13+
{
14+
public class Class1
15+
{
16+
[Test]
17+
public void PlaceHolderTest()
18+
{
19+
// Testing CI.
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)