5 instantiations of SimplePoco
Shared.Tests (5)
JsonSchemaExporter\TestTypes.cs (5)
140Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 521Value: new() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true }, 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 },
6 references to SimplePoco
Shared.Tests (6)
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 (3)
139yield return new TestData<SimplePoco>( 520yield return new TestData<SimplePoco>( 826yield return new TestData<Dictionary<string, SimplePoco>>(