コード例 #1
0
 public RerunLastDebugSession(string commandName, Func<bool> isEnabled, Func<bool> manualBuild, Action debug, DTE2 applicationObject, IVSBuildRunner buildRunner)
 {
     _commandName = commandName;
     _isEnabled = isEnabled;
     _manualBuild = manualBuild;
     _debug = debug;
     _applicationObject = applicationObject;
     _buildRunner = buildRunner;
 }
コード例 #2
0
 public RerunLastDebugSession(string commandName, Func <bool> isEnabled, Func <bool> manualBuild, Action debug, DTE2 applicationObject, IVSBuildRunner buildRunner)
 {
     _commandName       = commandName;
     _isEnabled         = isEnabled;
     _manualBuild       = manualBuild;
     _debug             = debug;
     _applicationObject = applicationObject;
     _buildRunner       = buildRunner;
 }
コード例 #3
0
 public RunTestsUnderCursor(string commandName, Func<bool> isEnabled, Func<bool> manualBuild, Action<OnDemandRun> runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Action<OnDemandRun> peek)
 {
     _commandName = commandName;
     _isEnabled = isEnabled;
     _manualBuild = manualBuild;
     _runTests = runTests;
     _applicationObject = applicationObject;
     _buildRunner = buildRunner;
     _peek = peek;
 }
コード例 #4
0
 public RunTestsUnderCursor(string commandName, Func <bool> isEnabled, Func <bool> manualBuild, Action <OnDemandRun> runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Action <OnDemandRun> peek)
 {
     _commandName       = commandName;
     _isEnabled         = isEnabled;
     _manualBuild       = manualBuild;
     _runTests          = runTests;
     _applicationObject = applicationObject;
     _buildRunner       = buildRunner;
     _peek = peek;
 }
コード例 #5
0
 public RunTestsForSolution(string commandName, Func <bool> isEnabled, Func <bool> manualBuild, Action <List <OnDemandRun> > runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Action <IEnumerable <OnDemandRun> > peek)
 {
     _commandName       = commandName;
     _isEnabled         = isEnabled;
     _manualBuild       = manualBuild;
     _runTests          = runTests;
     _applicationObject = applicationObject;
     _buildRunner       = buildRunner;
     _peek = peek;
 }
コード例 #6
0
 public RerunLastManualTestRun(string commandName, Func <bool> isEnabled, Func <bool> manualBuild, Action runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Func <IEnumerable <OnDemandRun> > getLastTestRun)
 {
     _commandName       = commandName;
     _isEnabled         = isEnabled;
     _manualBuild       = manualBuild;
     _runTests          = runTests;
     _applicationObject = applicationObject;
     _buildRunner       = buildRunner;
     _getLastTestRun    = getLastTestRun;
 }
コード例 #7
0
 public RunTestsForSolution(string commandName, Func<bool> isEnabled, Func<bool> manualBuild, Action<List<OnDemandRun>> runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Action<IEnumerable<OnDemandRun>> peek)
 {
     _commandName = commandName;
     _isEnabled = isEnabled;
     _manualBuild = manualBuild;
     _runTests = runTests;
     _applicationObject = applicationObject;
     _buildRunner = buildRunner;
     _peek = peek;
 }
コード例 #8
0
 public RerunLastManualTestRun(string commandName, Func<bool> isEnabled, Func<bool> manualBuild, Action runTests, DTE2 applicationObject, IVSBuildRunner buildRunner, Func<IEnumerable<OnDemandRun>> getLastTestRun)
 {
     _commandName = commandName;
     _isEnabled = isEnabled;
     _manualBuild = manualBuild;
     _runTests = runTests;
     _applicationObject = applicationObject;
     _buildRunner = buildRunner;
     _getLastTestRun = getLastTestRun;
 }
コード例 #9
0
 public DebugCurrentTest(string commandName, Func<bool> isEnabled, Func<bool> manualBuild, Func<string, string> getAssemblyFromProject, Action<CacheTestMessage> debug, DTE2 applicationObject, IVSBuildRunner buildRunner, Action<CacheTestMessage> peek)
 {
     _commandName = commandName;
     _isEnabled = isEnabled;
     _manualBuild = manualBuild;
     _getAssemblyFromProject = getAssemblyFromProject;
     _debug = debug;
     _applicationObject = applicationObject;
     _buildRunner = buildRunner;
     _peek = peek;
 }
コード例 #10
0
 public DebugCurrentTest(string commandName, Func <bool> isEnabled, Func <bool> manualBuild, Func <string, string> getAssemblyFromProject, Action <CacheTestMessage> debug, DTE2 applicationObject, IVSBuildRunner buildRunner, Action <CacheTestMessage> peek)
 {
     _commandName            = commandName;
     _isEnabled              = isEnabled;
     _manualBuild            = manualBuild;
     _getAssemblyFromProject = getAssemblyFromProject;
     _debug             = debug;
     _applicationObject = applicationObject;
     _buildRunner       = buildRunner;
     _peek = peek;
 }
コード例 #11
0
 public RunRelatedTests(ATEClient client, DTE2 application, IVSBuildRunner buildRunner)
 {
     _client = client;
     _application = application;
     _buildRunner = buildRunner;
 }
コード例 #12
0
 public AutoTestVSRunAll(DTE2 applicationObject, ATEClient client, IVSBuildRunner buildRunner)
 {
     _applicationObject = applicationObject;
     _client            = client;
     _buildRunner       = buildRunner;
 }
コード例 #13
0
 public AutoTestVSRunAll(DTE2 applicationObject, ATEClient client, IVSBuildRunner buildRunner)
 {
     _applicationObject = applicationObject;
     _client = client;
     _buildRunner = buildRunner;
 }
コード例 #14
0
 public RunRelatedTests(ATEClient client, DTE2 application, IVSBuildRunner buildRunner)
 {
     _client      = client;
     _application = application;
     _buildRunner = buildRunner;
 }