@@ -15,10 +15,10 @@ public class LargePayloadTests(ITestOutputHelper output, GrpcSidecarFixture side
1515{
1616 // Validates client externalizes a large orchestration input and worker resolves it.
1717 [ Fact ]
18- public async Task OrchestrationInput_IsExternalizedByClient_ResolvedByWorker ( )
18+ public async Task LargeOrchestrationInput ( )
1919 {
2020 string largeInput = new string ( 'A' , 1024 * 1024 ) ; // 1MB
21- TaskName orchestratorName = nameof ( OrchestrationInput_IsExternalizedByClient_ResolvedByWorker ) ;
21+ TaskName orchestratorName = nameof ( LargeOrchestrationInput ) ;
2222
2323 InMemoryPayloadStore fakeStore = new InMemoryPayloadStore ( ) ;
2424
@@ -72,10 +72,10 @@ public async Task OrchestrationInput_IsExternalizedByClient_ResolvedByWorker()
7272
7373 // Validates worker externalizes large activity input and delivers resolved payload to activity.
7474 [ Fact ]
75- public async Task ActivityInput_IsExternalizedByWorker_ResolvedByActivity ( )
75+ public async Task LargeActivityInput ( )
7676 {
7777 string largeParam = new string ( 'P' , 700 * 1024 ) ; // 700KB
78- TaskName orchestratorName = nameof ( ActivityInput_IsExternalizedByWorker_ResolvedByActivity ) ;
78+ TaskName orchestratorName = nameof ( LargeActivityInput ) ;
7979 TaskName activityName = "EchoLength" ;
8080
8181 InMemoryPayloadStore workerStore = new InMemoryPayloadStore ( ) ;
@@ -113,10 +113,10 @@ public async Task ActivityInput_IsExternalizedByWorker_ResolvedByActivity()
113113
114114 // Validates worker externalizes large activity output which is resolved by the orchestrator.
115115 [ Fact ]
116- public async Task ActivityOutput_IsExternalizedByWorker_ResolvedByOrchestrator ( )
116+ public async Task LargeActivityOutput ( )
117117 {
118118 string largeResult = new string ( 'R' , 850 * 1024 ) ; // 850KB
119- TaskName orchestratorName = nameof ( ActivityOutput_IsExternalizedByWorker_ResolvedByOrchestrator ) ;
119+ TaskName orchestratorName = nameof ( LargeActivityOutput ) ;
120120 TaskName activityName = "ProduceLarge" ;
121121
122122 InMemoryPayloadStore workerStore = new InMemoryPayloadStore ( ) ;
@@ -154,11 +154,11 @@ public async Task ActivityOutput_IsExternalizedByWorker_ResolvedByOrchestrator()
154154
155155 // Ensures querying a completed instance downloads and resolves an externalized output on the client.
156156 [ Fact ]
157- public async Task QueryCompletedInstance_DownloadsExternalizedOutputOnClient ( )
157+ public async Task LargeOrchestrationOutput ( )
158158 {
159159 string largeOutput = new string ( 'Q' , 900 * 1024 ) ; // 900KB
160160 string smallInput = "input" ;
161- TaskName orchestratorName = nameof ( QueryCompletedInstance_DownloadsExternalizedOutputOnClient ) ;
161+ TaskName orchestratorName = nameof ( LargeOrchestrationOutput ) ;
162162
163163 Dictionary < string , string > shared = new System . Collections . Generic . Dictionary < string , string > ( ) ;
164164 InMemoryPayloadStore workerStore = new InMemoryPayloadStore ( shared ) ;
@@ -207,10 +207,10 @@ public async Task QueryCompletedInstance_DownloadsExternalizedOutputOnClient()
207207
208208 // Ensures payloads below the threshold are not externalized by client or worker.
209209 [ Fact ]
210- public async Task BelowThreshold_NotExternalized ( )
210+ public async Task NoLargePayloads ( )
211211 {
212212 string smallPayload = new string ( 'X' , 64 * 1024 ) ; // 64KB
213- TaskName orchestratorName = nameof ( BelowThreshold_NotExternalized ) ;
213+ TaskName orchestratorName = nameof ( NoLargePayloads ) ;
214214
215215 InMemoryPayloadStore workerStore = new InMemoryPayloadStore ( ) ;
216216 InMemoryPayloadStore clientStore = new InMemoryPayloadStore ( ) ;
@@ -256,10 +256,10 @@ public async Task BelowThreshold_NotExternalized()
256256
257257 // Validates client externalizes a large external event payload and worker resolves it.
258258 [ Fact ]
259- public async Task ExternalEventPayload_IsExternalizedByClient_ResolvedByWorker ( )
259+ public async Task LargeExternalEvent ( )
260260 {
261261 string largeEvent = new string ( 'E' , 512 * 1024 ) ; // 512KB
262- TaskName orchestratorName = nameof ( ExternalEventPayload_IsExternalizedByClient_ResolvedByWorker ) ;
262+ TaskName orchestratorName = nameof ( LargeExternalEvent ) ;
263263 const string EventName = "LargeEvent" ;
264264
265265 InMemoryPayloadStore fakeStore = new InMemoryPayloadStore ( ) ;
@@ -306,11 +306,11 @@ public async Task ExternalEventPayload_IsExternalizedByClient_ResolvedByWorker()
306306
307307 // Validates worker externalizes both output and custom status; client resolves them on query.
308308 [ Fact ]
309- public async Task OutputAndCustomStatus_ExternalizedByWorker_ResolvedOnQuery ( )
309+ public async Task LargeOutputAndCustomStatus ( )
310310 {
311311 string largeOutput = new string ( 'O' , 768 * 1024 ) ; // 768KB
312312 string largeStatus = new string ( 'S' , 600 * 1024 ) ; // 600KB
313- TaskName orchestratorName = nameof ( OutputAndCustomStatus_ExternalizedByWorker_ResolvedOnQuery ) ;
313+ TaskName orchestratorName = nameof ( LargeOutputAndCustomStatus ) ;
314314
315315 InMemoryPayloadStore fakeStore = new InMemoryPayloadStore ( ) ;
316316
0 commit comments