/// <inheritdoc />
 /// <summary>
 /// Ctor
 /// </summary>
 /// <exception cref="ArgumentNullException">Condition.</exception>
 public PlatformsAsyncController(IPlatformRequestAsyncAggregate requestAsyncAggregate)
 {
     RequestAsyncAggregate = requestAsyncAggregate ?? throw new ArgumentNullException(nameof(requestAsyncAggregate));
 }
Ejemplo n.º 2
0
 public void TestInitalize()
 {
     fakePlatformRequestAsyncAggregate = A.Fake <IPlatformRequestAsyncAggregate>();
     controller = new PlatfomsAsyncController(fakePlatformRequestAsyncAggregate);
 }