diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-19 19:46:35 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-07-19 19:46:35 (GMT) |
commit | 5875da6cae352bbcbe64f537ccfcfab08ad98b3f (patch) | |
tree | 1f707443b228c25e2d0389133b8e697e88a11426 /testing/043 | |
parent | ea7a639c40a88c0de4baad4c0ffd5ae4b4065969 (diff) | |
download | Doxygen-5875da6cae352bbcbe64f537ccfcfab08ad98b3f.zip Doxygen-5875da6cae352bbcbe64f537ccfcfab08ad98b3f.tar.gz Doxygen-5875da6cae352bbcbe64f537ccfcfab08ad98b3f.tar.bz2 |
Added regression test suite
Diffstat (limited to 'testing/043')
-rw-r--r-- | testing/043/another.xml | 10 | ||||
-rw-r--r-- | testing/043/mypage.xml | 34 |
2 files changed, 44 insertions, 0 deletions
diff --git a/testing/043/another.xml b/testing/043/another.xml new file mode 100644 index 0000000..f403e8f --- /dev/null +++ b/testing/043/another.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> + <compounddef id="another" kind="page"> + <compoundname>another</compoundname> + <title>Another Page</title> + <detaileddescription> + <para>Another page's text. </para> + </detaileddescription> + </compounddef> +</doxygen> diff --git a/testing/043/mypage.xml b/testing/043/mypage.xml new file mode 100644 index 0000000..efb09c7 --- /dev/null +++ b/testing/043/mypage.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> + <compounddef id="mypage" kind="page"> + <compoundname>mypage</compoundname> + <title>Page Title</title> + <innerpage refid="another">Another Page</innerpage> + <detaileddescription> + <para>Text at page level. See <ref refid="mypage_1mysect" kindref="member">Section Title.</ref> for more. </para> + <sect1 id="mypage_1mysect"> + <title>Section Title.</title> + <para>Text at section level. See <ref refid="mypage_1mysubsect" kindref="member">Subsection Title.</ref> for more. </para> + <sect2 id="mypage_1mysubsect"> + <title>Subsection Title.</title> + <para>Text at subsection level. see <ref refid="mypage_1mysubsubsect" kindref="member">Subsubsection Title.</ref> for more. </para> + <sect3 id="mypage_1mysubsubsect"> + <title>Subsubsection Title.</title> + <para>Text at subsubsection level. <ref refid="mypage_1mypara" kindref="member">Paragraph Title.</ref> for more. </para> + <sect4 id="mypage_1mypara"> + <title>Paragraph Title.</title> + <para>Text at paragraph level. <ref refid="mypage_1mysect2" kindref="member">Another Section Title.</ref> for more. </para> + </sect4> + </sect3> + </sect2> + </sect1> + <sect1 id="mypage_1mysect2"> + <title>Another Section Title.</title> + <para>Text at section level.</para> + <para> + <ref refid="another" kindref="compound">Another Page</ref> + </para> + </sect1> + </detaileddescription> + </compounddef> +</doxygen> |