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