Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 652 Bytes

Summary.Tests.Extensions.md

File metadata and controls

28 lines (20 loc) · 652 Bytes
public static class Extensions

Extension methods that simplify unit testing and should not be included in the package.

Methods

public static O RunSync<O>(this IPipe<Unit, O> self)

Runs the pipe synchronously.

Parameters

  • self: The pipe to execute.
public static O RunSync<I, O>(this IPipe<I, O> self, I input)

Runs the pipe synchronously.

Parameters

  • self: The pipe to execute.