public DerivedRunTestWithDebuggerCommand(IRunTestCommandContext context)
			: base(context)
		{
		}
Example #2
0
 public AbstractRunTestCommand(IRunTestCommandContext context)
 {
     this.context = context;
 }
 public DerivedRunTestWithDebuggerCommand(IRunTestCommandContext context)
     : base(context)
 {
 }
Example #4
0
 public DerivedRunTestWithCodeCoverageCommand(IRunTestCommandContext context,
                                              ICodeCoverageTestRunnerFactory factory)
     : base(context, factory)
 {
 }
		public RunProjectTestsInPadCommand(IRunTestCommandContext context)
			: base(context)
		{
		}
Example #6
0
 public DerivedRunTestCommand(IRunTestCommandContext context)
     : base(context)
 {
 }
Example #7
0
 public RunTestWithCodeCoverageCommand(IRunTestCommandContext context,
                                       ICodeCoverageTestRunnerFactory factory)
     : base(context)
 {
     this.factory = factory;
 }
Example #8
0
 public void Init()
 {
     runTestCommandContext = new MockRunTestCommandContext();
 }
		public DerivedRunTestCommand(IRunTestCommandContext context)
			: base(context)
		{
		}
		public RunTestInPadCommand(IRunTestCommandContext context)
			: base(context)
		{
		}
		public AbstractRunTestCommand(IRunTestCommandContext context)
		{
			this.context = context;
		}
		public RunTestWithCodeCoverageCommand(IRunTestCommandContext context,
			ICodeCoverageTestRunnerFactory factory)
			: base(context)
		{
			this.factory = factory;
		}
		public void Init()
		{
			runTestCommandContext = new MockRunTestCommandContext();
		}
 public RunProjectTestsInPadCommand(IRunTestCommandContext context)
     : base(context)
 {
 }
 public RunAllTestsInPadCommand(IRunTestCommandContext context)
     : base(context)
 {
 }