예제 #1
0
            public void Inheritence()
            {
                var request = new DeletePlatformByIdRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                request.Should().NotBeNull();
                request.Should().BeAssignableTo <BaseServiceRequestAsync <Domain.Platform.Entities.Platform> >();
                request.Should().BeAssignableTo <IDeletePlatformByIdRequestAsync>();
                request.Should().BeOfType <DeletePlatformByIdRequestAsync>();
            }
예제 #2
0
 public void TestCleanup()
 {
     ClearFakes();
     request = null;
 }
예제 #3
0
 public void TestInitialize()
 {
     InitializeFakes();
     request = new DeletePlatformByIdRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);
 }