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