7 instantiations of SimplePoco
Shared.Tests (7)
JsonSchemaExporter\TestTypes.cs (7)
140Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 141AdditionalValues: [new() { String = "str", StringNullable = null }], 521Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 522AdditionalValues: [new() { String = "str", StringNullable = null }], 829["one"] = new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 830["two"] = new() { String = "string", StringNullable = null, Int = 42, Double = 3.14, Boolean = true }, 831["three"] = new() { String = "string", StringNullable = null, Int = 42, Double = 3.14, Boolean = true },
8 references to SimplePoco
Shared.Tests (8)
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 (5)
139yield return new TestData<SimplePoco>( 520yield return new TestData<SimplePoco>( 826yield return new TestData<Dictionary<string, SimplePoco>>( 1253[JsonSerializable(typeof(SimplePoco))] 1296[JsonSerializable(typeof(Dictionary<string, SimplePoco>))]