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:
authorMikhail Melnikov <mikhail_melnikov@epam.com>2018-05-15 18:45:22 +0300
committerJoel Martinez <joelmartinez@gmail.com>2018-05-29 23:54:41 +0300
commit047f5c951965c0a131d581c58eb2af0ba341c48d (patch)
tree30706e3d0b720d9c403fa8133eaebd861df3f3ed /mdoc/mdoc.Test/CppCxFormatterMembersTests.cs
parentf92ac8bcf7f4c0f7c1f12c3d23c1e5a829d7041d (diff)
Fixed missing API for VisualC reflected binary
For some C++ classes, generic parameters doesn't exist before `Resolve` is called. Added `type = type.Resolve();` for types with IsRequiredModifier == true. Closes #200
Diffstat (limited to 'mdoc/mdoc.Test/CppCxFormatterMembersTests.cs')
-rw-r--r--mdoc/mdoc.Test/CppCxFormatterMembersTests.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mdoc/mdoc.Test/CppCxFormatterMembersTests.cs b/mdoc/mdoc.Test/CppCxFormatterMembersTests.cs
index 8b1e73e1..bfee606d 100644
--- a/mdoc/mdoc.Test/CppCxFormatterMembersTests.cs
+++ b/mdoc/mdoc.Test/CppCxFormatterMembersTests.cs
@@ -137,6 +137,13 @@ namespace mdoc.Test
{
TestTypeSignature(CSharpTestLib, "Mono.DocTest.Widget/NestedClass", null);
}
+
+ [Test]
+ [Category("NoSupport")]
+ public void NoSupport_GenericMethodInUwp()
+ {
+ TestMethodSignature(typeof(Cpp.GenericBase<>), null, "BaseMethod2");
+ }
}
}