Blame testing/061_bug_705503.tcl

Packit Service 50c9f2
#// objective: test for bug 705503 - TCL: Documentation of oo::define is not working
Packit Service 50c9f2
#// check: class_test.xml
Packit Service 50c9f2
#// config: EXTRACT_ALL = yes
Packit Service 50c9f2
Packit Service 50c9f2
# taken from
Packit Service 50c9f2
# https://bugzilla.gnome.org/show_bug.cgi?id=705503
Packit Service 50c9f2
Packit Service 50c9f2
## @class Test
Packit Service 50c9f2
# @brief Testclass
Packit Service 50c9f2
oo::class create Test {
Packit Service 50c9f2
	## @brief Test method 1.
Packit Service 50c9f2
	method testmethod_one args {}
Packit Service 50c9f2
}
Packit Service 50c9f2
Packit Service 50c9f2
## @brief Construction of class
Packit Service 50c9f2
oo::define Test constructor args {}
Packit Service 50c9f2
Packit Service 50c9f2
## @brief Test method 2
Packit Service 50c9f2
oo::define Test method testmethod_two args {}