예제 #1
0
        public void It_does_not_create_a_runner_if_the_args_include_help()
        {
            var result = _testCommand.DoRun(new[] { "--help" });

            result.Should().Be(0);
            _dotnetTestRunnerFactoryMock.Verify(d => d.Create(It.IsAny <int?>()), Times.Never);
        }