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