Esempio n. 1
0
            public void Inheritence()
            {
                var request = new GetPlatformByIdRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                request.Should().NotBeNull();
                request.Should().BeAssignableTo <BaseServiceRequestAsync <Domain.Platform.Entities.Platform> >();
                request.Should().BeAssignableTo <IGetPlatformByIdRequestAsync>();
                request.Should().BeOfType <GetPlatformByIdRequestAsync>();
            }
Esempio n. 2
0
 public void TestCleanup()
 {
     ClearFakes();
     request = null;
 }
Esempio n. 3
0
 public void TestInitalize()
 {
     InitializeFakes();
     request = new GetPlatformByIdRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);
 }