File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
source/Octopus.Tentacle.Tests.Integration Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ public class ShowOneTimeSetupLogInfo : IntegrationTest
13
13
[ Test ]
14
14
public void ShowOneTimeSetupLogInfoTest ( )
15
15
{
16
- this . Logger . Information ( TentacleIntegrationSetupFixtures . OneTimeSetupLogOutput ) ;
17
- TentacleIntegrationSetupFixtures . OneTimeSetupLogOutput = null ;
16
+ this . Logger . Information ( TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures . OneTimeSetupLogOutput ) ;
17
+ TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures . OneTimeSetupLogOutput = null ;
18
18
}
19
19
}
20
20
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace Octopus.Tentacle.Tests.Integration
15
15
///
16
16
/// </summary>
17
17
[ SetUpFixture ] // Must be the one and only.
18
- public class TentacleIntegrationSetupFixtures
18
+ public class TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures
19
19
{
20
20
private ISetupFixture [ ] setupFixtures = new ISetupFixture [ ]
21
21
{
@@ -33,7 +33,7 @@ public void OneTimeSetup()
33
33
var logger = new SerilogLoggerBuilder ( )
34
34
. WithLoggingToStringBuilder ( sb )
35
35
. Build ( )
36
- . ForContext < TentacleIntegrationSetupFixtures > ( ) ;
36
+ . ForContext < TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures > ( ) ;
37
37
foreach ( var setupFixture in setupFixtures )
38
38
{
39
39
setupFixture . OneTimeSetUp ( logger . ForContext ( setupFixture . GetType ( ) ) ) ;
@@ -45,7 +45,7 @@ public void OneTimeSetup()
45
45
[ OneTimeTearDown ]
46
46
public void OneTimeTearDown ( )
47
47
{
48
- var logger = new SerilogLoggerBuilder ( ) . Build ( ) . ForContext < TentacleIntegrationSetupFixtures > ( ) ;
48
+ var logger = new SerilogLoggerBuilder ( ) . Build ( ) . ForContext < TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures > ( ) ;
49
49
var exceptions = new List < Exception > ( ) ;
50
50
foreach ( var setupFixture in setupFixtures . Reverse ( ) )
51
51
{
You can’t perform that action at this time.
0 commit comments