public void Import_should_return_instance_of_importconventionbuilder_for_importconvention_type()
        {
            var registry =
                new ImportRegistry();

            var result =
                registry.Import();

            result.ShouldBeOfType<ImportConventionBuilder<ImportConvention>>();
        }
        public void Import_of_tconvention_should_return_instance_of_importconventionbuilder_for_tconvention_type()
        {
            var registry =
                new ImportRegistry();

            var result =
                registry.ImportWithConvention <ImportConvention>();

            result.ShouldBeOfType <ImportConventionBuilder <ImportConvention> >();
        }