Commit 5875da6c authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Added regression test suite

parent ea7a639c
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
<?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="indexpage" kind="page">
    <compoundname>index</compoundname>
    <title>My Project</title>
    <detaileddescription>
      <para>Text <emphasis>argument</emphasis> more text. </para>
    </detaileddescription>
  </compounddef>
</doxygen>

testing/001_a.dox

0 → 100644
+5 −0
Original line number Original line Diff line number Diff line
// objective: test the \a and \mainpage commands
// check: indexpage.xml
/** \mainpage
 *  Text \a argument more text.
 */
+15 −0
Original line number Original line Diff line number Diff line
<?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="indexpage" kind="page">
    <compoundname>index</compoundname>
    <title>My Project</title>
    <detaileddescription>
      <para>
        <indexentry>
          <primaryie>keyword</primaryie>
          <secondaryie/>
        </indexentry>
      </para>
    </detaileddescription>
  </compounddef>
</doxygen>
+5 −0
Original line number Original line Diff line number Diff line
// objective: test \addindex command
// check: indexpage.xml
/** \mainpage
 *  \addindex keyword
 */
+10 −0
Original line number Original line Diff line number Diff line
<?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="indexpage" kind="page">
    <compoundname>index</compoundname>
    <title>My Project</title>
    <detaileddescription>
      <para><ref refid="index_1myanchor" kindref="member">See Anchor</ref> Some text. <anchor id="index_1myanchor"/>More text. </para>
    </detaileddescription>
  </compounddef>
</doxygen>
Loading