9 instantiations of SimplePoco
Shared.Tests (9)
JsonSchemaExporter\TestTypes.cs (9)
152
Value:
new
() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true },
153
AdditionalValues: [
new
() { String = "str", StringNullable = null }],
170
Value:
new
() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true },
171
AdditionalValues: [
new
() { String = "str", StringNullable = null }],
533
Value:
new
() { String = "string", StringNullable = "string", Int = 42, Double = 3.14, Boolean = true },
534
AdditionalValues: [
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")]
157
var ex = Assert.Throws<InvalidOperationException>(() => options.GetJsonSchemaAsNode(typeof(TestTypes.
SimplePoco
)));
167
var ex = Assert.Throws<NotSupportedException>(() => options.GetJsonSchemaAsNode(typeof(TestTypes.
SimplePoco
)));
JsonSchemaExporter\TestTypes.cs (6)
151
yield return new TestData<
SimplePoco
>(
169
yield return new TestData<
SimplePoco
>(
532
yield return new TestData<
SimplePoco
>(
838
yield return new TestData<Dictionary<string,
SimplePoco
>>(
1266
[JsonSerializable(typeof(
SimplePoco
))]
1309
[JsonSerializable(typeof(Dictionary<string,
SimplePoco
>))]