コード例 #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
ファイル: Program.cs プロジェクト: akrisiun/dotnet-cli
        public static int Run(string[] args)
        {
            var testCommand = new TestCommand(new DotnetTestRunnerFactory());

            return testCommand.DoRun(args);
        }