public void ShouldReturnFalseForNonDbSetTypes(
     Type type, DbSetSpecification specification)
 {
     specification.IsSatisfiedBy(type)
     .Should().BeFalse();
 }
 public void ShouldReturnTrueForDbSetTypes(
     Type type, DbSetSpecification specification)
 {
     specification.IsSatisfiedBy(type)
     .Should().BeTrue();
 }