public void Test_AttachmentStatusSpecification_SatisfyEntityFrom()
        {
            var specification = new AttachmentStatusSpecification(AttachmentStatus.Published);
            var result = specification.SatisfyEntityFrom(this.Values);

            Assert.AreEqual(AttachmentStatus.Published, result.Status);
        }