示例#1
0
 private Result RunTypes(RunContext runContext, Convention convention, params Type[] types)
 {
     return(Run(runContext, new[] { convention }, types));
 }
示例#2
0
文件: Runner.cs 项目: dlsteuer/fixie
        public AssemblyResult RunType(Assembly assembly, Convention convention, Type type)
        {
            var runContext = new RunContext(assembly, options);

            return(RunTypes(runContext, convention, type));
        }