mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Xunit.Abstractions;
|
|
using Xunit.Sdk;
|
|
|
|
namespace Microsoft.AspNetCore.Testing
|
|
{
|
|
internal class AspNetTestClassRunner : XunitTestClassRunner
|
|
{
|
|
public AspNetTestClassRunner(
|
|
ITestClass testClass,
|
|
IReflectionTypeInfo @class,
|
|
IEnumerable<IXunitTestCase> testCases,
|
|
IMessageSink diagnosticMessageSink,
|
|
IMessageBus messageBus,
|
|
ITestCaseOrderer testCaseOrderer,
|
|
ExceptionAggregator aggregator,
|
|
CancellationTokenSource cancellationTokenSource,
|
|
IDictionary<Type, object> collectionFixtureMappings)
|
|
: base(testClass, @class, testCases, diagnosticMessageSink, messageBus, testCaseOrderer, aggregator, cancellationTokenSource, collectionFixtureMappings)
|
|
{
|
|
}
|
|
|
|
protected override Task<RunSummary> RunTestMethodAsync(ITestMethod testMethod, IReflectionMethodInfo method, IEnumerable<IXunitTestCase> testCases, object[] constructorArguments)
|
|
{
|
|
var runner = new AspNetTestMethodRunner(
|
|
testMethod,
|
|
Class,
|
|
method,
|
|
testCases,
|
|
DiagnosticMessageSink,
|
|
MessageBus,
|
|
new ExceptionAggregator(Aggregator),
|
|
CancellationTokenSource,
|
|
constructorArguments);
|
|
return runner.RunAsync();
|
|
}
|
|
}
|
|
}
|
|
|