@@ -64,7 +64,6 @@ public void StopAndInitiateDurableTaskOrReplay_OutputsError_IfActivityFailed()
64
64
65
65
[ Theory ]
66
66
[ InlineData ( false , false ) ]
67
- [ InlineData ( false , true ) ]
68
67
[ InlineData ( true , false ) ]
69
68
public void StopAndInitiateDurableTaskOrReplay_OutputsNothing_IfActivityNotCompleted (
70
69
bool scheduled , bool completed )
@@ -84,14 +83,15 @@ public void StopAndInitiateDurableTaskOrReplay_OutputsNothing_IfActivityNotCompl
84
83
}
85
84
86
85
[ Theory ]
87
- [ InlineData ( false , true ) ]
88
- [ InlineData ( true , false ) ]
89
- public void StopAndInitiateDurableTaskOrReplay_WaitsForStop_IfActivityNotCompleted ( bool scheduledAndCompleted , bool expectedWaitForStop )
86
+ [ InlineData ( false , false , true ) ]
87
+ [ InlineData ( true , false , true ) ]
88
+ [ InlineData ( true , true , false ) ]
89
+ public void StopAndInitiateDurableTaskOrReplay_WaitsForStop_IfActivityNotCompleted ( bool scheduled , bool completed , bool expectedWaitForStop )
90
90
{
91
91
var durableTaskHandler = new DurableTaskHandler ( ) ;
92
92
93
93
var history = CreateHistory (
94
- scheduled : scheduledAndCompleted , completed : scheduledAndCompleted , failed : false , output : InvocationResultJson ) ;
94
+ scheduled : scheduled , completed : completed , failed : false , output : InvocationResultJson ) ;
95
95
96
96
var orchestrationContext = new OrchestrationContext { History = history } ;
97
97
0 commit comments