summaryrefslogtreecommitdiffstats
path: root/testing/061_bug_705503.tcl
diff options
context:
space:
mode:
authorwtschueller <wtschueller@users.noreply.github.com>2014-06-28 20:02:27 (GMT)
committerwtschueller <wtschueller@users.noreply.github.com>2014-06-28 20:02:27 (GMT)
commit5ec66c2286d7cedbdbb0930fe0e293b050c91d24 (patch)
treeeb0fa11cc5efacab2b2ab2e08ec867c45ce03485 /testing/061_bug_705503.tcl
parent070c35549da108695074239be3ab4268f3722261 (diff)
downloadDoxygen-5ec66c2286d7cedbdbb0930fe0e293b050c91d24.zip
Doxygen-5ec66c2286d7cedbdbb0930fe0e293b050c91d24.tar.gz
Doxygen-5ec66c2286d7cedbdbb0930fe0e293b050c91d24.tar.bz2
Bug 705503 - TCL: Documentation of oo::define is not working
Diffstat (limited to 'testing/061_bug_705503.tcl')
-rw-r--r--testing/061_bug_705503.tcl19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/061_bug_705503.tcl b/testing/061_bug_705503.tcl
new file mode 100644
index 0000000..ce25d6e
--- /dev/null
+++ b/testing/061_bug_705503.tcl
@@ -0,0 +1,19 @@
+#// objective: test for bug 705503 - TCL: Documentation of oo::define is not working
+#// check: class_test.xml
+#// config: EXTRACT_ALL = yes
+
+# taken from
+# https://bugzilla.gnome.org/show_bug.cgi?id=705503
+
+## @class Test
+# @brief Testclass
+oo::class create Test {
+ ## @brief Test method 1.
+ method testmethod_one args {}
+}
+
+## @brief Construction of class
+oo::define Test constructor args {}
+
+## @brief Test method 2
+oo::define Test method testmethod_two args {}