8 references to AllChangesApplied
Microsoft.Extensions.DotNetDeltaApplier.Tests (8)
DefaultHotReloadClient.cs (3)
222
(applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;
237
return ApplyStatus.
AllChangesApplied
;
267
(appliedUpdateCount < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;
HotReloadClients.cs (1)
145
case ApplyStatus.
AllChangesApplied
:
HotReloadClientTests.cs (2)
70
Assert.Equal(ApplyStatus.
AllChangesApplied
, await test.Client.ApplyManagedCodeUpdatesAsync([update], isProcessSuspended: false, CancellationToken.None));
101
Assert.Equal(ApplyStatus.
AllChangesApplied
, await test.Client.ApplyManagedCodeUpdatesAsync([update], isProcessSuspended: true, CancellationToken.None));
WebAssemblyHotReloadClient.cs (2)
99
return ApplyStatus.
AllChangesApplied
;
126
return (!anySuccess && anyFailure) ? ApplyStatus.Failed : (applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;