Exemplo n.º 1
0
 /// <inheritdoc />
 /// <summary>
 /// Ctor
 /// </summary>
 public PlatformsController(IPlatformRequestAggregate requestAggregate)
 {
     RequestAggregate = requestAggregate ?? throw new ArgumentNullException(nameof(requestAggregate));
 }
Exemplo n.º 2
0
 public void TestInitalize()
 {
     fakePlatformRequestAggregate = A.Fake <IPlatformRequestAggregate>();
     controller = new PlatformsController(fakePlatformRequestAggregate);
 }