Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Luo <basehello@icloud.com>2021-02-24 11:48:55 +0300
committerXiao Luo <basehello@icloud.com>2021-02-24 11:48:55 +0300
commit1235b2657b4c5e56af6674af05b937a8eb3f3661 (patch)
treeaa6ccb42b8328f1e776ff596b9dc770eedd13e43 /mdoc/mdoc.Test/NullableReferenceTypesTests.cs
parent0d14f8c4d3a7cd88eca1ee487652883ef74de3d2 (diff)
Initial commit.
Diffstat (limited to 'mdoc/mdoc.Test/NullableReferenceTypesTests.cs')
-rw-r--r--mdoc/mdoc.Test/NullableReferenceTypesTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc/mdoc.Test/NullableReferenceTypesTests.cs b/mdoc/mdoc.Test/NullableReferenceTypesTests.cs
index 48897efc..fb8af0e4 100644
--- a/mdoc/mdoc.Test/NullableReferenceTypesTests.cs
+++ b/mdoc/mdoc.Test/NullableReferenceTypesTests.cs
@@ -131,6 +131,8 @@ namespace mdoc.Test
[TestCase("NullableGenericValueTypeOfReferenceType", "ReadOnlySpan<string> s1, ReadOnlySpan<string?> s2, ReadOnlySpan<string> s3")]
[TestCase("NullableAndNonNullableInterfaceOfValueType", "ICollection<int> collection1, ICollection<int>? collection2, ICollection<int> collection3")]
[TestCase("NullableAndNonNullableInterfaceOfReferenceType", "ICollection<string> collection1, ICollection<string>? collection2, ICollection<string> collection3")]
+ [TestCase("NonNullableValueTypeWithOutModifier", "string? value, out bool result")]
+ [TestCase("NonNullableValueTypeWithRefModifier", "string? value, ref bool result")]
public void MethodParameter(string methodName, string methodParameter)
{
TestMethodSignature(NullableReferenceTypesAssemblyPath, "mdoc.Test.NullableReferenceTypes.MethodParameter",