using System; using System.Collections.Generic; using Umbraco.Core; namespace Umbraco.Tests.CodeFirst { /// /// Used for TypeInheritanceTest and CodeFirstTests /// internal static class PluginManagerExtensions { public static IEnumerable ResolveContentTypeBaseTypes(this PluginManager resolver) { return resolver.ResolveTypes(); } } }