public void NullSource_ThrowsArgumetNullExcepion()
        {
            ITypeRepository targetRespository = Substitute.For <ITypeRepository>();

            Assert.Throws <ArgumentNullException>(() => targetRespository.Extend(null));
        }