Microsoft.UnitTests.Core.XUnit.AssemblyRunner.RunTestCollectionAsync C# (CSharp) Method

RunTestCollectionAsync() protected method

protected RunTestCollectionAsync ( IMessageBus messageBus, ITestCollection testCollection, IEnumerable testCases, CancellationTokenSource cancellationTokenSource ) : Task
messageBus IMessageBus
testCollection ITestCollection
testCases IEnumerable
cancellationTokenSource System.Threading.CancellationTokenSource
return Task
        protected override Task<RunSummary> RunTestCollectionAsync(IMessageBus messageBus, ITestCollection testCollection, IEnumerable<IXunitTestCase> testCases, CancellationTokenSource cancellationTokenSource) {
            return new CollectionRunner(testCollection, testCases, DiagnosticMessageSink, messageBus, TestCaseOrderer, new ExceptionAggregator(Aggregator), cancellationTokenSource, _assemblyFixtureMappings).RunAsync();
        }