File: attributes_bad.xml

package info (click to toggle)
php-xml-dtd 0.5.2%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 268 kB
  • sloc: xml: 684; php: 416; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<foo>
<!-- Test required att2 and with no att1 -->
<string/>
<!-- Test required att2 and with att1 -->
<string att1="any" />
<!-- Test FIXED -->
<string att2="any" att3="should be POST" />
<!-- Enum required n2 missing -->
<enum />
<!-- Enum en2 present but invalid -->
<enum en2="im not valid" />
<!-- Enum en2 correct but n1 invalid -->
<enum en2="pkg" en1="im not valid" />
<!-- Enum en2 correct but en3 invalid -->
<enum en2="ldlib" en3="im not valid" />
<!-- Not declared tests -->
<string not="im not valid" />
<string att2="any" not="im not valid" />
<string att2="any" notdeclared="any" />
</foo>