Skip to content

Commit

Permalink
[AzureMonitorDistro] new project for integration tests (Azure#35590)
Browse files Browse the repository at this point in the history
* new project for integration tests

* testing ci

* fix missing package reference
  • Loading branch information
TimothyMothra authored Apr 14, 2023
1 parent 28a60f2 commit ec14313
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Monitor.OpenTelemetry
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}"
EndProject
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}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -48,12 +50,17 @@ Global
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3}.Release|Any CPU.Build.0 = Release|Any CPU
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BDEBE918-929D-4F32-B947-D5D1BAA3FC26}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6} = {E8C00D1E-9637-423D-AD28-D40CC01F19BE}
{3E77BE70-A052-44F1-9E79-CB6D266DB1B3} = {E8C00D1E-9637-423D-AD28-D40CC01F19BE}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {901A3302-C365-45ED-959D-662F975A7511}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />

<ProjectReference Include="$(AzureCoreTestFramework)" />
<ProjectReference Include="..\..\src\Azure.Monitor.OpenTelemetry.AspNetCore.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using NUnit.Framework;

namespace Azure.Monitor.OpenTelemetry.AspNetCore.Integration.Tests
{
public class Class1
{
[Test]
public void PlaceHolderTest()
{
// Testing CI.
}
}
}

0 comments on commit ec14313

Please sign in to comment.