1 instantiation of Invocation
Aspire.Dashboard.Components.Tests (1)
Shared\TestJSObjectReference.cs (1)
32
Invocations.Enqueue(
new
(identifier, args ?? []));
6 references to Invocation
Aspire.Dashboard.Components.Tests (6)
Layout\TerminalDockWindowTrackingTests.cs (5)
132
var
registration = Assert.Single(module.Invocations, i => i.Identifier == "registerTerminalWindowButton");
134
var
adoption = Assert.Single(module.Invocations, i => i.Identifier == "adoptTerminalWindows");
163
var
close = Assert.Single(module.Invocations, i => i.Identifier == "closeTerminalWindow");
200
var
registration = Assert.Single(module.Invocations, i => i.Identifier == "registerTerminalWindowButton");
205
var
close = Assert.Single(module.Invocations, i => i.Identifier == "closeTerminalWindow");
Shared\TestJSObjectReference.cs (1)
14
public ConcurrentQueue<
Invocation
> Invocations { get; } = new();