예제 #1
0
파일: TestCommand.cs 프로젝트: wtgodbe/cli
        public static int Run(string[] args)
        {
            var dotnetTestRunnerResolverFactory = new DotnetTestRunnerResolverFactory(new ProjectReader());
            var testCommand = new TestCommand(new DotnetTestRunnerFactory(dotnetTestRunnerResolverFactory));

            return(testCommand.DoRun(args));
        }
예제 #2
0
        public static int Run(string[] args)
        {
            var testCommand = new TestCommand(new DotnetTestRunnerFactory());

            return(testCommand.DoRun(args));
        }
예제 #3
0
        public static int Run(string[] args)
        {
            var testCommand = new TestCommand(new DotnetTestRunnerFactory());

            return testCommand.DoRun(args);
        }