public void Inheritence()
            {
                var request = new GetAllPlatformsRequestAsync(FakeRepositoryAsync, FakeRepositoryAsyncAggregate);

                request.Should().NotBeNull();
                request.Should().BeAssignableTo <BaseServiceRequestAsync <Domain.Platform.Entities.Platform> >();
                request.Should().BeAssignableTo <IGetAllPlatformsRequestAsync>();
                request.Should().BeOfType <GetAllPlatformsRequestAsync>();
            }
Пример #2
0
 public void InheritsFromIGetAllPlatformsRequestAsync()
 {
     request.Should().BeAssignableTo <IGetAllPlatformsRequestAsync>();
 }