From 11433d6b8cfe9a9ffb472fa5f7569dfad2ce6cdb Mon Sep 17 00:00:00 2001 From: albert-github Date: Sun, 6 Jan 2019 16:29:07 +0100 Subject: Warning messages of test 66 Test 66 gives some warning messages bout not documented entities: .../testing/066_property_initializer.cs:4: warning: Compound Class1 is not documented. .../testing/066_property_initializer.cs:5: warning: Member Property1 (property) of class Class1 is not documented. .../testing/066_property_initializer.cs:6: warning: Member Property2 (property) of class Class1 is not documented. The entities have been documented. --- testing/066/class_class1.xml | 103 +++++++++++++++++++----------------- testing/066_property_initializer.cs | 6 ++- 2 files changed, 57 insertions(+), 52 deletions(-) mode change 100644 => 100755 testing/066/class_class1.xml diff --git a/testing/066/class_class1.xml b/testing/066/class_class1.xml old mode 100644 new mode 100755 index 008bcc6..34335a7 --- a/testing/066/class_class1.xml +++ b/testing/066/class_class1.xml @@ -1,50 +1,53 @@ - - - - Class1 - - - int - int Class1.Property1 - - Property1 - = 1 - - - - - - - - - - string - string Class1.Property2 - - Property2 - - - - - - - - - - - - - - - - - Class1 - Property1 - - - Class1 - Property2 - - - - + + + + Class1 + + + int + int Class1.Property1 + + Property1 + = 1 + + Documentation of first property. + + + + + + + + + string + string Class1.Property2 + + Property2 + + Documentation of second property. + + + + + + + + + + Documentation of the class. + + + + + + + Class1 + Property1 + + + Class1 + Property2 + + + + diff --git a/testing/066_property_initializer.cs b/testing/066_property_initializer.cs index d5b5c59..57aeb5b 100644 --- a/testing/066_property_initializer.cs +++ b/testing/066_property_initializer.cs @@ -1,7 +1,9 @@ // objective: C# property initializer // check: class_class1.xml +/// +/// Documentation of the class class Class1 { - public int Property1 { get; } = 1; - public string Property2 { get; set; } + public int Property1 { get; } = 1; ///< Documentation of first property + public string Property2 { get; set; } ///< Documentation of second property } -- cgit v0.12