public void Inheritence()
            {
                var requestAsyncAggregate = new PlatformRequestAsyncAggregate(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                requestAsyncAggregate.Should().NotBeNull();
                requestAsyncAggregate.Should().BeAssignableTo <BaseRequestAsyncAggregate <Domain.Platform.Entities.Platform> >();
                requestAsyncAggregate.Should().BeAssignableTo <IPlatformRequestAsyncAggregate>();
                requestAsyncAggregate.Should().BeOfType <PlatformRequestAsyncAggregate>();
            }
 public void TestCleanup()
 {
     ClearFakes();
     requestAggregate = null;
 }
 public void TestInitialize()
 {
     InitializeFakes();
     requestAggregate = new PlatformRequestAsyncAggregate(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);
 }