3 instantiations of E2EManifest
Microsoft.AspNetCore.Components.Testing (1)
E2EManifestJsonContext.E2EManifest.g.cs (1)
31
ObjectCreator = () => new global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
(),
Microsoft.AspNetCore.Components.Testing.Tests (2)
E2EManifestTests.cs (2)
83
var manifest = new
E2EManifest
();
95
var manifest = new
E2EManifest
();
45 references to E2EManifest
Microsoft.AspNetCore.Components.Testing (21)
E2EManifestJsonContext.E2EManifest.g.cs (16)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
>? _E2EManifest;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
> E2EManifest
22
get => _E2EManifest ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
> Create_E2EManifest(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
>(options, objectInfo);
56
DeclaringType = typeof(global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
),
58
Getter = static obj => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
)obj).Apps,
59
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
)obj).Apps = value!,
66
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
).GetProperty("Apps", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry>), global::System.Array.Empty<global::System.Type>(), null),
78
private void E2EManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
? value)
89
DictionaryStringE2EAppEntrySerializeHandler(writer, ((global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
)value).Apps);
E2EManifestJsonContext.GetJsonTypeInfo.g.cs (1)
26
if (type == typeof(global::Microsoft.AspNetCore.Components.Testing.Infrastructure.
E2EManifest
))
Infrastructure\E2EManifest.cs (1)
20
internal static
E2EManifest
Load(string assemblyName)
Infrastructure\E2EManifestJsonContext.cs (1)
8
[JsonSerializable(typeof(
E2EManifest
))]
Infrastructure\ServerFixture.cs (2)
58
internal
E2EManifest
Manifest { get; private set; } = default!;
74
Manifest =
E2EManifest
.Load(_testAssemblyName);
Microsoft.AspNetCore.Components.Testing.Tests (24)
E2EManifestTests.cs (13)
30
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);
60
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);
74
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);
83
var
manifest = new E2EManifest();
95
var
manifest = new E2EManifest();
107
var ex = Assert.Throws<FileNotFoundException>(() =>
E2EManifest
.Load(assemblyName));
134
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);
165
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);
GenerateE2EManifestTaskTests.cs (11)
46
var
manifest = ReadManifest(manifestPath);
71
var
manifest = ReadManifest(manifestPath);
112
var
manifest = ReadManifest(manifestPath);
139
var
manifest = ReadManifest(manifestPath);
181
var
manifest = ReadManifest(manifestPath);
216
var
manifest = ReadManifest(manifestPath);
238
var
manifest = ReadManifest(manifestPath);
262
var
manifest = ReadManifest(manifestPath);
322
private static
E2EManifest
ReadManifest(string path)
325
var
manifest = JsonSerializer.Deserialize<
E2EManifest
>(json);