Rename ApplicationInsights test project (#60)

This commit is contained in:
Jass Bagga 2017-05-26 17:40:03 -07:00 committed by GitHub
parent 7bd98f5cf9
commit 8273d0aa27
10 changed files with 8 additions and 8 deletions

View File

@ -33,7 +33,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Web.Xdt.Extension
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.AzureAppServices.SiteExtension", "src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj", "{1CE2D76B-39E6-46C0-8F6F-C63E370955A9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests", "test\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.Tests.csproj", "{0899A101-E451-40A4-81B0-7AA18202C25D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationInsights.HostingStartup.Tests", "test\ApplicationInsights.HostingStartup.Tests\ApplicationInsights.HostingStartup.Tests.csproj", "{0899A101-E451-40A4-81B0-7AA18202C25D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -11,9 +11,9 @@ using Xunit.Abstractions;
namespace ApplicationInsightsJavaScriptSnippetTest
{
public class ApplicationInsightsJavaScriptSnippetTest : ApplicationInsightsFunctionalTest
public class JavaScriptSnippetTest : ApplicationInsightsFunctionalTest
{
public ApplicationInsightsJavaScriptSnippetTest(ITestOutputHelper output) : base(output)
public JavaScriptSnippetTest(ITestOutputHelper output) : base(output)
{
}
@ -30,7 +30,7 @@ namespace ApplicationInsightsJavaScriptSnippetTest
var testName = $"ApplicationInsightsJavaScriptSnippetTest_{applicationType}";
using (StartLog(out var loggerFactory, testName))
{
var logger = loggerFactory.CreateLogger(nameof(ApplicationInsightsJavaScriptSnippetTest));
var logger = loggerFactory.CreateLogger(nameof(JavaScriptSnippetTest));
var deploymentParameters = new DeploymentParameters(GetApplicationPath(), ServerType.Kestrel, RuntimeFlavor.CoreClr, RuntimeArchitecture.x64)
{
PublishApplicationBeforeDeployment = true,

View File

@ -11,9 +11,9 @@ using Xunit.Abstractions;
namespace ApplicationInsightsJavaScriptSnippetTest
{
public class ApplicationInsightsLoggingTest : ApplicationInsightsFunctionalTest
public class LoggingTest : ApplicationInsightsFunctionalTest
{
public ApplicationInsightsLoggingTest(ITestOutputHelper output) : base(output)
public LoggingTest(ITestOutputHelper output) : base(output)
{
}
@ -136,7 +136,7 @@ namespace ApplicationInsightsJavaScriptSnippetTest
var testName = $"ApplicationInsightsLoggingTest_{applicationType}";
using (StartLog(out var loggerFactory, testName))
{
var logger = loggerFactory.CreateLogger(nameof(ApplicationInsightsJavaScriptSnippetTest));
var logger = loggerFactory.CreateLogger(nameof(JavaScriptSnippetTest));
var deploymentParameters = new DeploymentParameters(GetApplicationPath(), ServerType.Kestrel,
RuntimeFlavor.CoreClr, RuntimeArchitecture.x64)
{

View File

@ -24,7 +24,7 @@ namespace ApplicationInsightsJavaScriptSnippetTest
private readonly DeploymentResult _deploymentResult;
private static readonly Assembly _resourcesAssembly = typeof(ApplicationInsightsJavaScriptSnippetTest).GetTypeInfo().Assembly;
private static readonly Assembly _resourcesAssembly = typeof(JavaScriptSnippetTest).GetTypeInfo().Assembly;
public Validator(
HttpClient httpClient,