Example #1
0
 public ServerTests(ITestOutputHelper testOutputHelper)
 {
     _buildPaths = ServerUtil.CreateBuildPaths(
         workingDir: Temp.CreateDirectory().Path,
         tempDir: Temp.CreateDirectory().Path);
     _logger = new XunitCompilerServerLogger(testOutputHelper);
 }
Example #2
0
 public ServerTests()
 {
     _buildPaths = ServerUtil.CreateBuildPaths(
         workingDir: Temp.CreateDirectory().Path,
         tempDir: Temp.CreateDirectory().Path);
 }
 public ServerTests()
 {
     _tempDirectory = Temp.CreateDirectory();
     _buildPaths    = ServerUtil.CreateBuildPaths(workingDir: _tempDirectory.Path);
 }