9 instantiations of SimplePoco
Shared.Tests (9)
JsonSchemaExporter\TestTypes.cs (9)
152Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 153AdditionalValues: [new() { String = "str", StringNullable = null }], 170Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 171AdditionalValues: [new() { String = "str", StringNullable = null }], 533Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 534AdditionalValues: [new() { String = "str", StringNullable = null }], 841["one"] = new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 842["two"] = new() { String = "string", StringNullable = null, Int = 42, Double = 3.14, Boolean = true }, 843["three"] = new() { String = "string", StringNullable = null, Int = 42, Double = 3.14, Boolean = true },
9 references to SimplePoco
Shared.Tests (9)
JsonSchemaExporter\JsonSchemaExporterTests.cs (3)
55[InlineData(typeof(TestTypes.SimplePoco), "object")] 157var ex = Assert.Throws<InvalidOperationException>(() => options.GetJsonSchemaAsNode(typeof(TestTypes.SimplePoco))); 167var ex = Assert.Throws<NotSupportedException>(() => options.GetJsonSchemaAsNode(typeof(TestTypes.SimplePoco)));
JsonSchemaExporter\TestTypes.cs (6)
151yield return new TestData<SimplePoco>( 169yield return new TestData<SimplePoco>( 532yield return new TestData<SimplePoco>( 838yield return new TestData<Dictionary<string, SimplePoco>>( 1266[JsonSerializable(typeof(SimplePoco))] 1309[JsonSerializable(typeof(Dictionary<string, SimplePoco>))]