public void SpecifyRequirements()
        {
            Mock<ITypeMemberConventionRequirements> reqMock = new Mock<ITypeMemberConventionRequirements>();
            var target = new RandomBooleanConvention();

            target.SpecifyRequirements(reqMock.Object);

            reqMock.Verify(a => a.Type(x => x == typeof(bool)), @"
            The SpecifyRequirements call produced a requirement that doesn't make sense for this convention.
            ");
        }
        public void Apply()
        {
            Mock<ITypePropertyConventionContext> contextMock = new Mock<ITypePropertyConventionContext>();
            var target = new RandomBooleanConvention();

            target.Apply(contextMock.Object);

            contextMock.Verify( a => a.SetSource<RandomBooleanDataSource>(), @"
            The SetSource method was not called on the TypePropertyConvenctionContext object.
            This has to happen in order for the convention to work.
            ");
        }