コード例 #1
0
            public void Inheritence()
            {
                var request = new CreatePlatformRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                request.Should().NotBeNull();
                request.Should().BeAssignableTo <BaseServiceRequestAsync <Domain.Platform.Entities.Platform> >();
                request.Should().BeAssignableTo <ICreatePlatformRequestAsync>();
                request.Should().BeOfType <CreatePlatformRequestAsync>();
            }
コード例 #2
0
 public void TestCleanup()
 {
     ClearFakes();
     request = null;
 }
コード例 #3
0
 public void TestInitialize()
 {
     InitializeFakes();
     request = new CreatePlatformRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);
 }