public void GenericGetComponentFamily()
        {
            var cLazy = _context.LazyGetComponentFamily <ISampleContract>();

            _context.Register(typeof(SampleComponent));

            var c = cLazy.Value;

            Assert.IsNotNull(c);
            Assert.AreEqual(1, c.Count());
        }