@@ -33,7 +33,7 @@ public abstract partial class IntegrationTest : IAsyncLifetime
3333 protected IManagement ? _management ;
3434 protected string _queueName ;
3535 protected string _exchangeName ;
36- protected string _containerId = $ "integration-test-{ Now } ";
36+ protected string _containerId = $ "integration-test-{ Now } - { GenerateShortUuid ( ) } ";
3737
3838 private readonly bool _setupConnectionAndManagement ;
3939 protected readonly ConnectionSettingsBuilder _connectionSettingBuilder ;
@@ -48,9 +48,9 @@ public IntegrationTest(ITestOutputHelper testOutputHelper,
4848
4949 _testDisplayName = InitTestDisplayName ( ) ;
5050
51- _queueName = $ "{ _testDisplayName } -queue-{ Now } ";
52- _exchangeName = $ "{ _testDisplayName } -exchange-{ Now } ";
53- _containerId = $ "{ _testDisplayName } :{ Now } ";
51+ _queueName = $ "{ _testDisplayName } -queue-{ Now } - { GenerateShortUuid ( ) } ";
52+ _exchangeName = $ "{ _testDisplayName } -exchange-{ Now } - { GenerateShortUuid ( ) } ";
53+ _containerId = $ "{ _testDisplayName } :{ Now } - { GenerateShortUuid ( ) } ";
5454
5555 if ( IsVerbose )
5656 {
@@ -358,7 +358,9 @@ private string InitTestDisplayName()
358358 object ? testObj = testMember . GetValue ( _testOutputHelper ) ;
359359 if ( testObj is ITest test )
360360 {
361- rv = test . DisplayName ;
361+ rv = test . DisplayName
362+ . Replace ( "Test." , string . Empty )
363+ . Replace ( "Integration." , "I." ) ;
362364 }
363365 }
364366
0 commit comments