コード例 #1
0
 public void Setup()
 {
     Logger = new Logging.TestLogger();
     OrganizationService         = new TestConnectionManager().CreateConnection();
     LogsDirectory               = TestContext.TestLogsDir;
     EnvironmentVariablesManager = new EnvironmentVariablesManager(Logger, OrganizationService);
 }
コード例 #2
0
 public void Setup()
 {
     Logger = new Logging.TestLogger();
     OrganizationService = new TestConnectionManager().CreateConnection();
     LogsDirectory       = TestContext.TestLogsDir;
     SolutionManager     = new SolutionManager(Logger, OrganizationService, null);
 }
コード例 #3
0
 public void Setup()
 {
     Logger = new TestLogger();
     OrganizationService = new TestConnectionManager().CreateConnection();
     ArtifactsDirectory  = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\Artifacts";
     LogsDirectory       = TestContext.TestLogsDir;
     Manager             = new SolutionComponentsManager(Logger, OrganizationService);
 }
コード例 #4
0
 public void Setup()
 {
     Logger = new TestLogger();
     OrganizationService        = new TestConnectionManager().CreateConnection();
     PollingOrganizationService = new TestConnectionManager().CreateConnection();
     ArtifactsDirectory         = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + "\\Artifacts";
     LogsDirectory   = TestContext.TestLogsDir;
     LogFileName     = $"{TestContext.TestName}.xml";
     SolutionManager = new SolutionManager(Logger, OrganizationService, PollingOrganizationService);
 }