2 writes to Executable
Microsoft.AspNetCore.Components.Testing (1)
E2EManifestJsonContext.E2EAppEntry.g.cs (1)
59
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).
Executable
= value!,
Microsoft.AspNetCore.Components.Testing.Tests (1)
E2EManifestTests.cs (1)
84
manifest.Apps["TestApp"] = new E2EAppEntry {
Executable
= "dotnet", Arguments = "run --no-launch-profile", WorkingDirectory = "/test" };
16 references to Executable
Microsoft.AspNetCore.Components.Testing (5)
E2EManifestJsonContext.E2EAppEntry.g.cs (2)
58
Getter = static obj => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)obj).
Executable
,
172
writer.WriteString(PropName_executable, ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry)value).
Executable
);
Infrastructure\ServerInstance.cs (3)
149
$"Command: {appEntry.
Executable
} {appEntry.Arguments}.\n" +
159
$"Command: {appEntry.
Executable
} {appEntry.Arguments}.\n" +
198
var executable = appEntry.
Executable
;
Microsoft.AspNetCore.Components.Testing.Tests (11)
E2EManifestTests.cs (5)
37
Assert.Equal("dotnet", app.
Executable
);
64
Assert.Equal("PublishedApp.exe", app.
Executable
);
89
Assert.Equal("dotnet", result!.
Executable
);
141
Assert.Equal("dotnet", buildEntry!.
Executable
);
147
Assert.Equal("MyApp.exe", publishedEntry!.
Executable
);
GenerateE2EManifestTaskTests.cs (6)
51
Assert.Equal("dotnet", entry!.
Executable
);
74
Assert.Equal("dotnet", entry!.
Executable
);
116
Assert.Equal(expectedExe, entry!.
Executable
);
142
Assert.Equal("dotnet", entry!.
Executable
);
187
Assert.Equal("dotnet", buildEntry!.
Executable
);
195
Assert.Equal(expectedExe, publishEntry!.
Executable
);