using System.Collections.Generic;
using My.Company;
using My.Company.Common;
using Xunit;
public class TestPatternServicesAsyncWire
{
[Fact]
public async void Passthrough()
{
var s = ServiceAsyncWire.Create();
var d = new Dictionary<string, string>
{
{ "hello", "world" }
};
var r = await s.WirePassthrough(d.Wire());
r.Unwire();
}
}