Skip to content

Commit 99948d0

Browse files
committed
Add test for doc entry association with groups
1 parent 42f744c commit 99948d0

File tree

6 files changed

+76
-0
lines changed

6 files changed

+76
-0
lines changed

testing/100/group___a.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US">
3+
<compounddef id="group___a" kind="group">
4+
<compoundname>A</compoundname>
5+
<title>A</title>
6+
<innerfile refid="100__a_8c">100_a.c</innerfile>
7+
<briefdescription>
8+
</briefdescription>
9+
<detaileddescription>
10+
</detaileddescription>
11+
</compounddef>
12+
</doxygen>

testing/100/group___b.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US">
3+
<compounddef id="group___b" kind="group">
4+
<compoundname>B</compoundname>
5+
<title>B</title>
6+
<innerfile refid="more__100__b_8c">more_100_b.c</innerfile>
7+
<briefdescription>
8+
</briefdescription>
9+
<detaileddescription>
10+
</detaileddescription>
11+
</compounddef>
12+
</doxygen>

testing/100/group___c.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="" xml:lang="en-US">
3+
<compounddef id="group___c" kind="group">
4+
<compoundname>C</compoundname>
5+
<title>C</title>
6+
<innerfile refid="more__100__c_8c">more_100_c.c</innerfile>
7+
<briefdescription>
8+
</briefdescription>
9+
<detaileddescription>
10+
</detaileddescription>
11+
</compounddef>
12+
</doxygen>

testing/100_a.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
!// objective: test documentation entry association with groups
2+
!// input: more_100_b.c
3+
!// input: more_100_c.c
4+
!// check: group___a.xml
5+
!// check: group___b.xml
6+
!// check: group___c.xml
7+
8+
/**
9+
* @file
10+
*
11+
* @ingroup A
12+
*
13+
* @brief 100_a.c
14+
*/

testing/more_100_b.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* @file
3+
*
4+
* @ingroup B
5+
*
6+
* @brief more_100_b.c
7+
*/

testing/more_100_c.c

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
* @file
3+
*
4+
* @ingroup C
5+
*
6+
* @brief more_100_c.c
7+
*/
8+
9+
/**
10+
* @defgroup A A
11+
*/
12+
13+
/**
14+
* @defgroup B B
15+
*/
16+
17+
/**
18+
* @defgroup C C
19+
*/

0 commit comments

Comments
 (0)