summaryrefslogtreecommitdiffstats
path: root/testing/066_property_initializer.cs
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-01-06 15:29:07 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-01-06 15:29:07 (GMT)
commit11433d6b8cfe9a9ffb472fa5f7569dfad2ce6cdb (patch)
treefbb7efd6d8311d2e72e815932903ba460d85417f /testing/066_property_initializer.cs
parent62712c703b377777a80b61e3ce7e7595771c2ad5 (diff)
downloadDoxygen-11433d6b8cfe9a9ffb472fa5f7569dfad2ce6cdb.zip
Doxygen-11433d6b8cfe9a9ffb472fa5f7569dfad2ce6cdb.tar.gz
Doxygen-11433d6b8cfe9a9ffb472fa5f7569dfad2ce6cdb.tar.bz2
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.
Diffstat (limited to 'testing/066_property_initializer.cs')
-rw-r--r--testing/066_property_initializer.cs6
1 files changed, 4 insertions, 2 deletions
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
}