• Home
  • .NET
  • Unity
  • Godot
  • Design Overview
  • API Documentation
  • Changelog
  • GitHub
Show / Hide Table of Contents
  • Responsible
    • BddExtensions
    • IExternalResultSource
    • IFailureListener
    • IGlobalContextProvider
    • IOptionalTestResponder
    • ITestInstruction<T>
    • ITestOperation<T>
    • ITestResponder<T>
    • ITestScheduler
    • ITestWaitCondition<T>
    • LinqSupport
    • OptionalTestResponder
    • RepetitionLimitExceededException
    • Responsibly
    • TestFailureException
    • TestInstruction
    • TestInstructionExecutor
    • TestInstructionExecutor.StateNotificationCallback
    • TestOperationState
    • TestResponder
    • TestWaitCondition
  • Responsible.Bdd
    • IBddStep
    • Keywords
    • ScenarioBuilder
  • Responsible.Context
    • RunContext
  • Responsible.Docs
    • Inherit
  • Responsible.State
    • ITestOperationState
    • ITestOperationState<T>
    • StateStringBuilder
    • TestOperationStateTransition
    • TestOperationStatus
  • Responsible.Unity
    • TestOperationYieldInstruction<T>
    • UnhandledLogMessageException
    • UnityErrorLogInterceptor
    • UnityFailureListener
    • UnityTestInstructionExecutor
    • UnityTestScheduler
  • Responsible.Utilities
    • IMultipleTaskAwaiter<T>
    • IMultipleTaskSource<T>
    • IndentedStringBuilder<T>
    • RetryingPoller

Class LinqSupport

Provides the required extension method on ITestInstruction<T> for it to be used with the LINQ query syntax.

Inheritance
object
LinqSupport
Namespace: Responsible
Assembly: Responsible.dll
Syntax
public static class LinqSupport

Methods

SelectMany<TSource, TSelector, TResult>(ITestInstruction<TSource>, Func<TSource, ITestInstruction<TSelector>>, Func<TSource, TSelector, TResult>)

Standard extension method required to support LINQ query syntax. Should not be used directly.

Declaration
public static ITestInstruction<TResult> SelectMany<TSource, TSelector, TResult>(this ITestInstruction<TSource> source, Func<TSource, ITestInstruction<TSelector>> selector, Func<TSource, TSelector, TResult> resultSelector)
Parameters
Type Name Description
ITestInstruction<TSource> source
Func<TSource, ITestInstruction<TSelector>> selector
Func<TSource, TSelector, TResult> resultSelector
Returns
Type Description
ITestInstruction<TResult>
Type Parameters
Name Description
TSource
TSelector
TResult
In this article
Back to top Generated by DocFX