public void CallAnyMapper()
        {
            var properties = new List <object>();
            var map        = new StubPropertyContainerMapper <MyClass>(properties);
            var called     = false;

            map.Any(typeof(MyClass).GetProperty("Reference"), typeof(int), x => called = true);

            Assert.That(called, Is.True);
        }
        public void CallAnyMapper()
        {
            var properties = new List <object>();
            var map        = new StubPropertyContainerMapper <EntitySimple>(properties);
            var called     = false;

            map.Any(typeof(MyClass).GetProperty("Reference"), typeof(int), x => called = true);

            called.Should().Be.True();
        }