public void TypeLazy_StaticType_LLinkedLibraryNotNull()
        {
            var factory = new StaticLinkedLibraryFactory(typeof(Math));
            var linkedLibrary = factory.CreateLinkedLibrary();
            Assert.That(linkedLibrary, Is.Not.Null);

        }
 public void TypeLazy_StaticType_LazyOfStaticType()
 {
     var factory = new StaticLinkedLibraryFactory(typeof(Math));
     Assert.That(factory.TypeLazy.Value, Is.EqualTo(typeof(Math)));
 }