public void TestImporterDescriptions()
        {
            AssimpContext importer = new AssimpContext();

            ImporterDescription[] importerDescrs = importer.GetImporterDescriptions();

            Assert.IsNotNull(importerDescrs);
            Assert.IsTrue(importerDescrs.Length > 0);

            ImporterDescription descr  = importer.GetImporterDescriptionFor("obj");
            ImporterDescription descr2 = importer.GetImporterDescriptionFor(".obj");

            Assert.IsNotNull(descr);
            Assert.IsNotNull(descr2);
            Assert.IsTrue(descr.Name == descr2.Name);
        }