예제 #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));
        }