@@ -312,8 +312,8 @@ await store.SetParameters(
312312 sf . Parameter . ShouldNotBeNull ( ) ;
313313 }
314314
315- public abstract Task RestartExecutionsWithoutMessagesReturnsEmptyDictionaryWhenNoFlowsAreEligible ( ) ;
316- public async Task RestartExecutionsWithoutMessagesReturnsEmptyDictionaryWhenNoFlowsAreEligible ( Task < IFunctionStore > storeTask )
315+ public abstract Task RestartExecutionsReturnsEmptyDictionaryWhenNoFlowsAreEligible ( ) ;
316+ public async Task RestartExecutionsReturnsEmptyDictionaryWhenNoFlowsAreEligible ( Task < IFunctionStore > storeTask )
317317 {
318318 var store = await storeTask ;
319319 var storedId1 = TestStoredId . Create ( ) ;
@@ -342,13 +342,13 @@ await store.CreateFunction(
342342 ) ;
343343
344344 // Try to restart - should return empty dictionary
345- var result = await store . RestartExecutionsWithoutMessages ( [ storedId1 , storedId2 ] , newOwner ) ;
345+ var result = await store . RestartExecutions ( [ storedId1 , storedId2 ] , newOwner ) ;
346346
347347 result . Count . ShouldBe ( 0 ) ;
348348 }
349349
350- public abstract Task RestartExecutionsWithoutMessagesRestartsMultipleUnownedFlows ( ) ;
351- public async Task RestartExecutionsWithoutMessagesRestartsMultipleUnownedFlows ( Task < IFunctionStore > storeTask )
350+ public abstract Task RestartExecutionsRestartsMultipleUnownedFlows ( ) ;
351+ public async Task RestartExecutionsRestartsMultipleUnownedFlows ( Task < IFunctionStore > storeTask )
352352 {
353353 var store = await storeTask ;
354354 var storedId1 = TestStoredId . Create ( ) ;
@@ -386,7 +386,7 @@ await store.CreateFunction(
386386 ) ;
387387
388388 // Restart all three
389- var result = await store . RestartExecutionsWithoutMessages ( [ storedId1 , storedId2 , storedId3 ] , owner ) ;
389+ var result = await store . RestartExecutions ( [ storedId1 , storedId2 , storedId3 ] , owner ) ;
390390
391391 // All three should be restarted
392392 result . Count . ShouldBe ( 3 ) ;
@@ -402,8 +402,8 @@ await store.CreateFunction(
402402 result [ storedId3 ] . StoredFlow . Status . ShouldBe ( Status . Executing ) ;
403403 }
404404
405- public abstract Task RestartExecutionsWithoutMessagesRestartsOnlyUnownedFlows ( ) ;
406- public async Task RestartExecutionsWithoutMessagesRestartsOnlyUnownedFlows ( Task < IFunctionStore > storeTask )
405+ public abstract Task RestartExecutionsRestartsOnlyUnownedFlows ( ) ;
406+ public async Task RestartExecutionsRestartsOnlyUnownedFlows ( Task < IFunctionStore > storeTask )
407407 {
408408 var store = await storeTask ;
409409 var storedId1 = TestStoredId . Create ( ) ;
@@ -442,7 +442,7 @@ await store.CreateFunction(
442442 ) ;
443443
444444 // Restart all three - only 1 and 3 should succeed
445- var result = await store . RestartExecutionsWithoutMessages ( [ storedId1 , storedId2 , storedId3 ] , newOwner ) ;
445+ var result = await store . RestartExecutions ( [ storedId1 , storedId2 , storedId3 ] , newOwner ) ;
446446
447447 result . Count . ShouldBe ( 2 ) ;
448448 result . ContainsKey ( storedId1 ) . ShouldBeTrue ( ) ;
@@ -453,19 +453,19 @@ await store.CreateFunction(
453453 result [ storedId3 ] . StoredFlow . OwnerId . ShouldBe ( newOwner ) ;
454454 }
455455
456- public abstract Task RestartExecutionsWithoutMessagesReturnsEmptyDictionaryForEmptyInput ( ) ;
457- public async Task RestartExecutionsWithoutMessagesReturnsEmptyDictionaryForEmptyInput ( Task < IFunctionStore > storeTask )
456+ public abstract Task RestartExecutionsReturnsEmptyDictionaryForEmptyInput ( ) ;
457+ public async Task RestartExecutionsReturnsEmptyDictionaryForEmptyInput ( Task < IFunctionStore > storeTask )
458458 {
459459 var store = await storeTask ;
460460 var owner = ReplicaId . NewId ( ) ;
461461
462- var result = await store . RestartExecutionsWithoutMessages ( [ ] , owner ) ;
462+ var result = await store . RestartExecutions ( [ ] , owner ) ;
463463
464464 result . Count . ShouldBe ( 0 ) ;
465465 }
466466
467- public abstract Task RestartExecutionsWithoutMessagesIncludesExistingEffects ( ) ;
468- public async Task RestartExecutionsWithoutMessagesIncludesExistingEffects ( Task < IFunctionStore > storeTask )
467+ public abstract Task RestartExecutionsIncludesExistingEffects ( ) ;
468+ public async Task RestartExecutionsIncludesExistingEffects ( Task < IFunctionStore > storeTask )
469469 {
470470 var store = await storeTask ;
471471 var storedId1 = TestStoredId . Create ( ) ;
@@ -488,7 +488,7 @@ public async Task RestartExecutionsWithoutMessagesIncludesExistingEffects(Task<I
488488 Alias : null
489489 ) ;
490490
491- // Create messages - these must NOT be fetched by RestartExecutionsWithoutMessages
491+ // Create messages - these must NOT be fetched by RestartExecutions
492492 var message1 = new StoredMessage (
493493 MessageContent : "message1" . ToUtf8Bytes ( ) ,
494494 MessageType : "Type1" . ToUtf8Bytes ( ) ,
@@ -529,7 +529,7 @@ await store.CreateFunction(
529529 ) ;
530530
531531 // Restart both
532- var result = await store . RestartExecutionsWithoutMessages ( [ storedId1 , storedId2 ] , owner ) ;
532+ var result = await store . RestartExecutions ( [ storedId1 , storedId2 ] , owner ) ;
533533
534534 // Verify both flows returned with their effects
535535 result . Count . ShouldBe ( 2 ) ;
0 commit comments