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
1313 [ Test ]
1414 public void ShowOneTimeSetupLogInfoTest ( )
1515 {
16- this . Logger . Information ( TentacleIntegrationSetupFixtures . OneTimeSetupLogOutput ) ;
17- TentacleIntegrationSetupFixtures . OneTimeSetupLogOutput = null ;
16+ this . Logger . Information ( TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures . OneTimeSetupLogOutput ) ;
17+ TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures . OneTimeSetupLogOutput = null ;
1818 }
1919 }
2020}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace Octopus.Tentacle.Tests.Integration
1515 ///
1616 /// </summary>
1717 [ SetUpFixture ] // Must be the one and only.
18- public class TentacleIntegrationSetupFixtures
18+ public class TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures
1919 {
2020 private ISetupFixture [ ] setupFixtures = new ISetupFixture [ ]
2121 {
@@ -33,7 +33,7 @@ public void OneTimeSetup()
3333 var logger = new SerilogLoggerBuilder ( )
3434 . WithLoggingToStringBuilder ( sb )
3535 . Build ( )
36- . ForContext < TentacleIntegrationSetupFixtures > ( ) ;
36+ . ForContext < TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures > ( ) ;
3737 foreach ( var setupFixture in setupFixtures )
3838 {
3939 setupFixture . OneTimeSetUp ( logger . ForContext ( setupFixture . GetType ( ) ) ) ;
@@ -45,7 +45,7 @@ public void OneTimeSetup()
4545 [ OneTimeTearDown ]
4646 public void OneTimeTearDown ( )
4747 {
48- var logger = new SerilogLoggerBuilder ( ) . Build ( ) . ForContext < TentacleIntegrationSetupFixtures > ( ) ;
48+ var logger = new SerilogLoggerBuilder ( ) . Build ( ) . ForContext < TentacleIntegrationSetupCanBeLongRunningClickHereToSeeLogsFixtures > ( ) ;
4949 var exceptions = new List < Exception > ( ) ;
5050 foreach ( var setupFixture in setupFixtures . Reverse ( ) )
5151 {
You can’t perform that action at this time.
0 commit comments