-
Notifications
You must be signed in to change notification settings - Fork 0
/
ibm_oasis_not-wf.xml
executable file
·3132 lines (3116 loc) · 201 KB
/
ibm_oasis_not-wf.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
(C) Copyright IBM Corp. 2000 All rights reserved.
US Government Users Restricted Rights Use, duplication or
disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
The program is provided "as is" without any warranty express or
implied, including the warranty of non-infringement and the implied
warranties of merchantibility and fitness for a particular purpose.
IBM will not be liable for any damages suffered by you as a result
of using the Program. In no event will IBM be liable for any
special, indirect or consequential damages or lost profits even if
IBM has been advised of the possibility of their occurrence. IBM
will not be liable for any third party claims against you.
-->
<TESTCASES PROFILE="IBM XML Conformance Test Suite - not-wf tests">
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 1">
<TEST URI="not-wf/P01/ibm01n01.xml" TYPE="not-wf" ID="ibm-not-wf-P01-ibm01n01.xml" ENTITIES="none" SECTIONS="2.1">
Tests a document with no element. A well-formed document should have at lease
one elements.
</TEST>
<TEST URI="not-wf/P01/ibm01n02.xml" TYPE="not-wf" ID="ibm-not-wf-P01-ibm01n02.xml" ENTITIES="none" SECTIONS="2.1">
Tests a document with wrong ordering of its prolog and element. The
element occurs before the xml declaration and the DTD.
</TEST>
<TEST URI="not-wf/P01/ibm01n03.xml" TYPE="not-wf" ID="ibm-not-wf-P01-ibm01n03.xml" ENTITIES="none" SECTIONS="2.1">
Tests a document with wrong combination of misc and element. One PI occurs
between two elements.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 2">
<TEST URI="not-wf/P02/ibm02n01.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n01.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x00
</TEST>
<TEST URI="not-wf/P02/ibm02n02.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n02.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x01
</TEST>
<TEST URI="not-wf/P02/ibm02n03.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n03.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x02
</TEST>
<TEST URI="not-wf/P02/ibm02n04.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n04.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x03
</TEST>
<TEST URI="not-wf/P02/ibm02n05.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n05.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x04
</TEST>
<TEST URI="not-wf/P02/ibm02n06.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n06.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x05
</TEST>
<TEST URI="not-wf/P02/ibm02n07.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n07.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x06
</TEST>
<TEST URI="not-wf/P02/ibm02n08.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n08.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x07
</TEST>
<TEST URI="not-wf/P02/ibm02n09.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n09.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x08
</TEST>
<TEST URI="not-wf/P02/ibm02n10.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n10.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x0B
</TEST>
<TEST URI="not-wf/P02/ibm02n11.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n11.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x0C
</TEST>
<TEST URI="not-wf/P02/ibm02n12.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n12.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x0E
</TEST>
<TEST URI="not-wf/P02/ibm02n13.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n13.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x0F
</TEST>
<TEST URI="not-wf/P02/ibm02n14.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n14.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x10
</TEST>
<TEST URI="not-wf/P02/ibm02n15.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n15.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x11
</TEST>
<TEST URI="not-wf/P02/ibm02n16.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n16.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x12
</TEST>
<TEST URI="not-wf/P02/ibm02n17.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n17.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x13
</TEST>
<TEST URI="not-wf/P02/ibm02n18.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n18.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x14
</TEST>
<TEST URI="not-wf/P02/ibm02n19.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n19.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x15
</TEST>
<TEST URI="not-wf/P02/ibm02n20.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n20.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x16
</TEST>
<TEST URI="not-wf/P02/ibm02n21.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n21.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x17
</TEST>
<TEST URI="not-wf/P02/ibm02n22.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n22.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x18
</TEST>
<TEST URI="not-wf/P02/ibm02n23.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n23.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x19
</TEST>
<TEST URI="not-wf/P02/ibm02n24.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n24.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1A </TEST>
<TEST URI="not-wf/P02/ibm02n25.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n25.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1B
</TEST>
<TEST URI="not-wf/P02/ibm02n26.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n26.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1C
</TEST>
<TEST URI="not-wf/P02/ibm02n27.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n27.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1D
</TEST>
<TEST URI="not-wf/P02/ibm02n28.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n28.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1E
</TEST>
<TEST URI="not-wf/P02/ibm02n29.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n29.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #x1F
</TEST>
<TEST URI="not-wf/P02/ibm02n30.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n30.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #xD800
</TEST>
<TEST URI="not-wf/P02/ibm02n31.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n31.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #xDFFF
</TEST>
<TEST URI="not-wf/P02/ibm02n32.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n32.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #xFFFE
</TEST>
<TEST URI="not-wf/P02/ibm02n33.xml" TYPE="not-wf" ID="ibm-not-wf-P02-ibm02n33.xml" ENTITIES="none" SECTIONS="2.2">
Tests a comment which contains an illegal Char: #xFFFF
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 3">
<TEST URI="not-wf/P03/ibm03n01.xml" TYPE="not-wf" ID="ibm-not-wf-P03-ibm03n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests an end tag which contains an illegal space character #x3000 which
follows the element name "book".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 4">
<TEST URI="not-wf/P04/ibm04n01.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x21
</TEST>
<TEST URI="not-wf/P04/ibm04n02.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x28
</TEST>
<TEST URI="not-wf/P04/ibm04n03.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x29
</TEST>
<TEST URI="not-wf/P04/ibm04n04.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n04.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x2B
</TEST>
<TEST URI="not-wf/P04/ibm04n05.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n05.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x2C
</TEST>
<TEST URI="not-wf/P04/ibm04n06.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n06.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x2F
</TEST>
<TEST URI="not-wf/P04/ibm04n07.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n07.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x3B
</TEST>
<TEST URI="not-wf/P04/ibm04n08.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n08.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x3C
</TEST>
<TEST URI="not-wf/P04/ibm04n09.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n09.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x3D
</TEST>
<TEST URI="not-wf/P04/ibm04n10.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n10.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x3F
</TEST>
<TEST URI="not-wf/P04/ibm04n11.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n11.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x5B
</TEST>
<TEST URI="not-wf/P04/ibm04n12.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n12.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x5C
</TEST>
<TEST URI="not-wf/P04/ibm04n13.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n13.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x5D
</TEST>
<TEST URI="not-wf/P04/ibm04n14.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n14.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x5E
</TEST>
<TEST URI="not-wf/P04/ibm04n15.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n15.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x60
</TEST>
<TEST URI="not-wf/P04/ibm04n16.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n16.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x7B
</TEST>
<TEST URI="not-wf/P04/ibm04n17.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n17.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x7C
</TEST>
<TEST URI="not-wf/P04/ibm04n18.xml" TYPE="not-wf" ID="ibm-not-wf-P04-ibm04n18.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which contains an illegal ASCII NameChar.
"IllegalNameChar" is followed by #x7D
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 5">
<TEST URI="not-wf/P05/ibm05n01.xml" TYPE="not-wf" ID="ibm-not-wf-P05-ibm05n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which has an illegal first character. An illegal
first character "." is followed by "A_name-starts_with.".
</TEST>
<TEST URI="not-wf/P05/ibm05n02.xml" TYPE="not-wf" ID="ibm-not-wf-P05-ibm05n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which has an illegal first character. An illegal
first character "-" is followed by "A_name-starts_with-".
</TEST>
<TEST URI="not-wf/P05/ibm05n03.xml" TYPE="not-wf" ID="ibm-not-wf-P05-ibm05n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests an element name which has an illegal first character. An illegal
first character "5" is followed by "A_name-starts_with_digit".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 9">
<TEST URI="not-wf/P09/ibm09n01.xml" TYPE="not-wf" ID="ibm-not-wf-P09-ibm09n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests an internal general entity with an invalid value. The entity
"Fullname" contains "%".
</TEST>
<TEST URI="not-wf/P09/ibm09n02.xml" TYPE="not-wf" ID="ibm-not-wf-P09-ibm09n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests an internal general entity with an invalid value. The entity
"Fullname" contains the ampersand character.
</TEST>
<TEST URI="not-wf/P09/ibm09n03.xml" TYPE="not-wf" ID="ibm-not-wf-P09-ibm09n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests an internal general entity with an invalid value. The entity
"Fullname" contains the double quote character in the middle.
</TEST>
<TEST URI="not-wf/P09/ibm09n04.xml" TYPE="not-wf" ID="ibm-not-wf-P09-ibm09n04.xml" ENTITIES="none" SECTIONS="2.3">
Tests an internal general entity with an invalid value. The closing bracket
(double quote) is missing with the value of the entity "FullName".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 10">
<TEST URI="not-wf/P10/ibm10n01.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character "less than".
</TEST>
<TEST URI="not-wf/P10/ibm10n02.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character ampersand.
</TEST>
<TEST URI="not-wf/P10/ibm10n03.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the double quote character in the middle.
</TEST>
<TEST URI="not-wf/P10/ibm10n04.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n04.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The closing bracket (double quote) is
missing with The value of the attribute "first".
</TEST>
<TEST URI="not-wf/P10/ibm10n05.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n05.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character "less than".
</TEST>
<TEST URI="not-wf/P10/ibm10n06.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n06.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the character ampersand.
</TEST>
<TEST URI="not-wf/P10/ibm10n07.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n07.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The value of the attribute "first"
contains the double quote character in the middle.
</TEST>
<TEST URI="not-wf/P10/ibm10n08.xml" TYPE="not-wf" ID="ibm-not-wf-P10-ibm10n08.xml" ENTITIES="none" SECTIONS="2.3">
Tests an attribute with an invalid value. The closing bracket (single quote) is
missing with the value of the attribute "first".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 11">
<TEST URI="not-wf/P11/ibm11n01.xml" TYPE="not-wf" ID="ibm-not-wf-P11-ibm11n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests SystemLiteral. The systemLiteral for the element "student" has
a double quote character in the middle.
</TEST>
<TEST URI="not-wf/P11/ibm11n02.xml" TYPE="not-wf" ID="ibm-not-wf-P11-ibm11n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests SystemLiteral. The systemLiteral for the element "student" has
a single quote character in the middle.
</TEST>
<TEST URI="not-wf/P11/ibm11n03.xml" TYPE="not-wf" ID="ibm-not-wf-P11-ibm11n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests SystemLiteral. The closing bracket (double quote) is missing with
the systemLiteral for the element "student".
</TEST>
<TEST URI="not-wf/P11/ibm11n04.xml" TYPE="not-wf" ID="ibm-not-wf-P11-ibm11n04.xml" ENTITIES="none" SECTIONS="2.3">
Tests SystemLiteral. The closing bracket (single quote) is missing with
the systemLiteral for the element "student".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 12">
<TEST URI="not-wf/P12/ibm12n01.xml" TYPE="not-wf" ID="ibm-not-wf-P12-ibm12n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidLiteral. The closing bracket (double quote) is missing with
the value of the PubidLiteral for the entity "info".
</TEST>
<TEST URI="not-wf/P12/ibm12n02.xml" TYPE="not-wf" ID="ibm-not-wf-P12-ibm12n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidLiteral. The value of the PubidLiteral for the entity
"info" has a single quote character in the middle..
</TEST>
<TEST URI="not-wf/P12/ibm12n03.xml" TYPE="not-wf" ID="ibm-not-wf-P12-ibm12n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidLiteral. The closing bracket (single quote) is missing with
the value of the PubidLiteral for the entity "info".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 13">
<TEST URI="not-wf/P13/ibm13n01.xml" TYPE="not-wf" ID="ibm-not-wf-P13-ibm13n01.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidChar. The pubidChar of the PubidLiteral for the entity
"info" contains the character "{".
</TEST>
<TEST URI="not-wf/P13/ibm13n02.xml" TYPE="not-wf" ID="ibm-not-wf-P13-ibm13n02.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidChar. The pubidChar of the PubidLiteral for the entity
"info" contains the character "~".
</TEST>
<TEST URI="not-wf/P13/ibm13n03.xml" TYPE="not-wf" ID="ibm-not-wf-P13-ibm13n03.xml" ENTITIES="none" SECTIONS="2.3">
Tests PubidChar. The pubidChar of the PubidLiteral for the entity
"info" contains the character double quote in the middle.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 14">
<TEST URI="not-wf/P14/ibm14n01.xml" TYPE="not-wf" ID="ibm-not-wf-P14-ibm14n01.xml" ENTITIES="none" SECTIONS="2.4">
Tests CharData. The content of the element "student" contains the
sequence close-bracket close-bracket greater-than.
</TEST>
<TEST URI="not-wf/P14/ibm14n02.xml" TYPE="not-wf" ID="ibm-not-wf-P14-ibm14n02.xml" ENTITIES="none" SECTIONS="2.4">
Tests CharData. The content of the element "student" contains the
character "less than".
</TEST>
<TEST URI="not-wf/P14/ibm14n03.xml" TYPE="not-wf" ID="ibm-not-wf-P14-ibm14n03.xml" ENTITIES="none" SECTIONS="2.4">
Tests CharData. The content of the element "student" contains the
character ampersand.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 15">
<TEST URI="not-wf/P15/ibm15n01.xml" TYPE="not-wf" ID="ibm-not-wf-P15-ibm15n01.xml" ENTITIES="none" SECTIONS="2.5">
Tests comment. The text of the second comment contains the character
"-".
</TEST>
<TEST URI="not-wf/P15/ibm15n02.xml" TYPE="not-wf" ID="ibm-not-wf-P15-ibm15n02.xml" ENTITIES="none" SECTIONS="2.5">
Tests comment. The second comment has a wrong closing sequence
"-(greater than)".
</TEST>
<TEST URI="not-wf/P15/ibm15n03.xml" TYPE="not-wf" ID="ibm-not-wf-P15-ibm15n03.xml" ENTITIES="none" SECTIONS="2.5">
Tests comment. The second comment has a wrong beginning sequence
"(less than)!-".
</TEST>
<TEST URI="not-wf/P15/ibm15n04.xml" TYPE="not-wf" ID="ibm-not-wf-P15-ibm15n04.xml" ENTITIES="none" SECTIONS="2.5">
Tests comment. The closing sequence is missing with the second
comment.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 16">
<TEST URI="not-wf/P16/ibm16n01.xml" TYPE="not-wf" ID="ibm-not-wf-P16-ibm16n01.xml" ENTITIES="none" SECTIONS="2.6">
Tests PI. The content of the PI includes the sequence
"?(greater than)?".
</TEST>
<TEST URI="not-wf/P16/ibm16n02.xml" TYPE="not-wf" ID="ibm-not-wf-P16-ibm16n02.xml" ENTITIES="none" SECTIONS="2.6">
Tests PI. The PITarget is missing in the PI.
</TEST>
<TEST URI="not-wf/P16/ibm16n03.xml" TYPE="not-wf" ID="ibm-not-wf-P16-ibm16n03.xml" ENTITIES="none" SECTIONS="2.6">
Tests PI. The PI has a wrong closing sequence ">".
</TEST>
<TEST URI="not-wf/P16/ibm16n04.xml" TYPE="not-wf" ID="ibm-not-wf-P16-ibm16n04.xml" ENTITIES="none" SECTIONS="2.6">
Tests PI. The closing sequence is missing in the PI.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 17">
<TEST URI="not-wf/P17/ibm17n01.xml" TYPE="not-wf" ID="ibm-not-wf-P17-ibm17n01.xml" ENTITIES="none" SECTIONS="2.6">
Tests PITarget. The PITarget contains the string "XML".
</TEST>
<TEST URI="not-wf/P17/ibm17n02.xml" TYPE="not-wf" ID="ibm-not-wf-P17-ibm17n02.xml" ENTITIES="none" SECTIONS="2.6">
Tests PITarget. The PITarget contains the string "xML".
</TEST>
<TEST URI="not-wf/P17/ibm17n03.xml" TYPE="not-wf" ID="ibm-not-wf-P17-ibm17n03.xml" ENTITIES="none" SECTIONS="2.6">
Tests PITarget. The PITarget contains the string "xml".
</TEST>
<TEST URI="not-wf/P17/ibm17n04.xml" TYPE="not-wf" ID="ibm-not-wf-P17-ibm17n04.xml" ENTITIES="none" SECTIONS="2.6">
Tests PITarget. The PITarget contains the string "xmL".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 18">
<TEST URI="not-wf/P18/ibm18n01.xml" TYPE="not-wf" ID="ibm-not-wf-P18-ibm18n01.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDSect. The CDStart is missing in the CDSect in the content of
element "student".
</TEST>
<TEST URI="not-wf/P18/ibm18n02.xml" TYPE="not-wf" ID="ibm-not-wf-P18-ibm18n02.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDSect. The CDEnd is missing in the CDSect in the content of
element "student".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 19">
<TEST URI="not-wf/P19/ibm19n01.xml" TYPE="not-wf" ID="ibm-not-wf-P19-ibm19n01.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDStart. The CDStart contains a lower case string "cdata".
</TEST>
<TEST URI="not-wf/P19/ibm19n02.xml" TYPE="not-wf" ID="ibm-not-wf-P19-ibm19n02.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDStart. The CDStart contains an extra character "[".
</TEST>
<TEST URI="not-wf/P19/ibm19n03.xml" TYPE="not-wf" ID="ibm-not-wf-P19-ibm19n03.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDStart. The CDStart contains a wrong character "?".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 20">
<TEST URI="not-wf/P20/ibm20n01.xml" TYPE="not-wf" ID="ibm-not-wf-P20-ibm20n01.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDATA with an illegal sequence. The CDATA contains the
sequence close-bracket close-bracket greater-than.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 21">
<TEST URI="not-wf/P21/ibm21n01.xml" TYPE="not-wf" ID="ibm-not-wf-P21-ibm21n01.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDEnd. One "]" is missing in the CDEnd.
</TEST>
<TEST URI="not-wf/P21/ibm21n02.xml" TYPE="not-wf" ID="ibm-not-wf-P21-ibm21n02.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDEnd. An extra "]" is placed in the CDEnd.
</TEST>
<TEST URI="not-wf/P21/ibm21n03.xml" TYPE="not-wf" ID="ibm-not-wf-P21-ibm21n03.xml" ENTITIES="none" SECTIONS="2.7">
Tests CDEnd. A wrong character ")" is placed in the CDEnd.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 22">
<TEST URI="not-wf/P22/ibm22n01.xml" TYPE="not-wf" ID="ibm-not-wf-P22-ibm22n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests prolog with wrong field ordering. The XMLDecl occurs
after the DTD.
</TEST>
<TEST URI="not-wf/P22/ibm22n02.xml" TYPE="not-wf" ID="ibm-not-wf-P22-ibm22n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests prolog with wrong field ordering. The Misc (comment)
occurs before the XMLDecl.
</TEST>
<TEST URI="not-wf/P22/ibm22n03.xml" TYPE="not-wf" ID="ibm-not-wf-P22-ibm22n03.xml" ENTITIES="none" SECTIONS="2.8">
Tests prolog with wrong field ordering. The XMLDecl occurs
after the DTD and a comment. The other comment occurs before the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 23">
<TEST URI="not-wf/P23/ibm23n01.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with a required field missing. The Versioninfo is
missing in the XMLDecl.
</TEST>
<TEST URI="not-wf/P23/ibm23n02.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with wrong field ordering. The VersionInfo
occurs after the EncodingDecl.
</TEST>
<TEST URI="not-wf/P23/ibm23n03.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n03.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with wrong field ordering. The VersionInfo
occurs after the SDDecl and the SDDecl occurs after the VersionInfo.
</TEST>
<TEST URI="not-wf/P23/ibm23n04.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n04.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with wrong key word. An upper case string "XML" is
used as the key word in the XMLDecl.
</TEST>
<TEST URI="not-wf/P23/ibm23n05.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n05.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with a wrong closing sequence ">".
</TEST>
<TEST URI="not-wf/P23/ibm23n06.xml" TYPE="not-wf" ID="ibm-not-wf-P23-ibm23n06.xml" ENTITIES="none" SECTIONS="2.8">
Tests XMLDecl with a wrong opening sequence "(less than)!".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 24">
<TEST URI="not-wf/P24/ibm24n01.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with a required field missing. The VersionNum is
missing in the VersionInfo in the XMLDecl.
</TEST>
<TEST URI="not-wf/P24/ibm24n02.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with a required field missing. The white space is
missing between the key word "xml" and the VersionInfo in the XMLDecl.
</TEST>
<TEST URI="not-wf/P24/ibm24n03.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n03.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with a required field missing. The "="
(equal sign) is missing between the key word "version" and the VersionNum.
</TEST>
<TEST URI="not-wf/P24/ibm24n04.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n04.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with wrong field ordering. The VersionNum
occurs before "=" and "version".
</TEST>
<TEST URI="not-wf/P24/ibm24n05.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n05.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with wrong field ordering. The "=" occurs
after "version" and the VersionNum.
</TEST>
<TEST URI="not-wf/P24/ibm24n06.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n06.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with the wrong key word "Version".
</TEST>
<TEST URI="not-wf/P24/ibm24n07.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n07.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with the wrong key word "versioN".
</TEST>
<TEST URI="not-wf/P24/ibm24n08.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n08.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with mismatched quotes around the VersionNum.
version = '1.0" is used as the VersionInfo.
</TEST>
<TEST URI="not-wf/P24/ibm24n09.xml" TYPE="not-wf" ID="ibm-not-wf-P24-ibm24n09.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionInfo with mismatched quotes around the VersionNum.
The closing bracket for the VersionNum is missing.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 25">
<TEST URI="not-wf/P25/ibm25n01.xml" TYPE="not-wf" ID="ibm-not-wf-P25-ibm25n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests eq with a wrong key word "==".
</TEST>
<TEST URI="not-wf/P25/ibm25n02.xml" TYPE="not-wf" ID="ibm-not-wf-P25-ibm25n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests eq with a wrong key word "eq".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 26">
<TEST URI="not-wf/P26/ibm26n01.xml" TYPE="not-wf" ID="ibm-not-wf-P26-ibm26n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests VersionNum with an illegal character "#".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 27">
<TEST URI="not-wf/P27/ibm27n01.xml" TYPE="not-wf" ID="ibm-not-wf-P27-ibm27n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests type of Misc. An element declaration is used as a type of Misc
After the element "animal".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 28">
<TEST URI="not-wf/P28/ibm28n01.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with a required field missing. The Name "animal"
is missing in the doctypedecl.
</TEST>
<TEST URI="not-wf/P28/ibm28n02.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with wrong field ordering. The Name
"animal" occurs after the markup declarations inside the "[]".
</TEST>
<TEST URI="not-wf/P28/ibm28n03.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n03.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with wrong field ordering. The Name
"animal" occurs after the markup declarations inside the "[]".
</TEST>
<TEST URI="not-wf/P28/ibm28n04.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n04.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with general entity reference.The
"(ampersand)generalE" occurs in the DTD.
</TEST>
<TEST URI="not-wf/P28/ibm28n05.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n05.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with wrong key word. A wrong key word "DOCtYPE"
occurs on line 2.
</TEST>
<TEST URI="not-wf/P28/ibm28n06.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n06.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with mismatched brackets. The closing bracket "]"
of the DTD is missing.
</TEST>
<TEST URI="not-wf/P28/ibm28n07.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n07.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with wrong bracket. The opening bracket "{" occurs
in the DTD.
</TEST>
<TEST URI="not-wf/P28/ibm28n08.xml" TYPE="not-wf" ID="ibm-not-wf-P28-ibm28n08.xml" ENTITIES="none" SECTIONS="2.8">
Tests doctypedecl with wrong opening sequence. The opening sequence
"(less than)?DOCTYPE" occurs in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 28a">
<TEST URI="not-wf/p28a/ibm28an01.xml" TYPE="not-wf" ID="ibm-not-wf-p28a-ibm28an01.xml" ENTITIES="parameter" SECTIONS="2.8">
This test violates WFC:PE Between Declarations in Production 28a.
The last character of a markup declaration is not contained in the same
parameter-entity text replacement.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 29">
<TEST URI="not-wf/P29/ibm29n01.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n01.xml" ENTITIES="none" SECTIONS="2.8">
Tests markupdecl with an illegal markup declaration. A XMLDecl
occurs inside the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n02.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n02.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n03.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n03.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
ATTlistDecl in the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n04.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n04.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside an
EntityDecl in the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n05.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n05.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside a PI in
the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n06.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n06.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside a comment
in the DTD.
</TEST>
<TEST URI="not-wf/P29/ibm29n07.xml" TYPE="not-wf" ID="ibm-not-wf-P29-ibm29n07.xml" ENTITIES="none" SECTIONS="2.8">
Tests WFC "PEs in Internal Subset". A PE reference occurs inside a
NotationDecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 30">
<TEST URI="not-wf/P30/ibm30n01.xml" TYPE="not-wf" ID="ibm-not-wf-P30-ibm30n01.xml" ENTITIES="parameter" SECTIONS="2.8">
Tests extSubset with wrong field ordering. In the file "ibm30n01.dtd",
the TextDecl occurs after the extSubsetDecl (the element declaration).
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 31">
<TEST URI="not-wf/P31/ibm31n01.xml" TYPE="not-wf" ID="ibm-not-wf-P31-ibm31n01.xml" ENTITIES="parameter" SECTIONS="2.8">
Tests extSubsetDecl with an illegal field. A general entity
reference occurs in file "ibm31n01.dtd".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 32">
<TEST URI="not-wf/P32/ibm32n01.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n01.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with a required field missing. The leading white space
is missing with the SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n02.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n02.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with a required field missing. The "=" sign is missing
in the SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n03.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n03.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong key word. The word "Standalone" occurs in
the SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n04.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n04.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong key word. The word "Yes" occurs in the
SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n05.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n05.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong key word. The word "YES" occurs in the
SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n06.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n06.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong key word. The word "No" occurs in the
SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n07.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n07.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong key word. The word "NO" occurs in the
SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n08.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n08.xml" ENTITIES="none" SECTIONS="2.9">
Tests SDDecl with wrong field ordering. The "=" sign occurs
after the key word "yes" in the SDDecl in the XMLDecl.
</TEST>
<TEST URI="not-wf/P32/ibm32n09.xml" TYPE="not-wf" ID="ibm-not-wf-P32-ibm32n09.xml" ENTITIES="parameter" SECTIONS="2.9">
This is test violates WFC: Entity Declared in P68.
The standalone document declaration has the value yes, BUT there is an
external markup declaration of an entity (other than amp, lt, gt, apos,
quot), and references to this entity appear in the document.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 39">
<TEST URI="not-wf/P39/ibm39n01.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n01.xml" ENTITIES="none" SECTIONS="3">
Tests element with a required field missing. The ETag is missing
for the element "root".
</TEST>
<TEST URI="not-wf/P39/ibm39n02.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n02.xml" ENTITIES="none" SECTIONS="3">
Tests element with a required field missing. The STag is missing
for the element "root".
</TEST>
<TEST URI="not-wf/P39/ibm39n03.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n03.xml" ENTITIES="none" SECTIONS="3">
Tests element with required fields missing. Both the content and
the ETag are missing in the element "root".
</TEST>
<TEST URI="not-wf/P39/ibm39n04.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n04.xml" ENTITIES="none" SECTIONS="3">
Tests element with required fields missing. Both the content and
the STag are missing in the element "root".
</TEST>
<TEST URI="not-wf/P39/ibm39n05.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n05.xml" ENTITIES="none" SECTIONS="3">
Tests element with wrong field ordering. The STag and the ETag are
swapped in the element "root".
</TEST>
<TEST URI="not-wf/P39/ibm39n06.xml" TYPE="not-wf" ID="ibm-not-wf-P39-ibm39n06.xml" ENTITIES="none" SECTIONS="3">
Tests element with wrong field ordering. The content occurs after
the ETag of the element "root".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 40">
<TEST URI="not-wf/P40/ibm40n01.xml" TYPE="not-wf" ID="ibm-not-wf-P40-ibm40n01.xml" ENTITIES="none" SECTIONS="3.1">
Tests STag with a required field missing. The Name "root" is
in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P40/ibm40n02.xml" TYPE="not-wf" ID="ibm-not-wf-P40-ibm40n02.xml" ENTITIES="none" SECTIONS="3.1">
Tests STag with a required field missing. The white space between
the Name "root" and the attribute "attr1" is missing in the STag of the
element "root".
</TEST>
<TEST URI="not-wf/P40/ibm40n03.xml" TYPE="not-wf" ID="ibm-not-wf-P40-ibm40n03.xml" ENTITIES="none" SECTIONS="3.1">
Tests STag with wrong field ordering. The Name "root" occurs after
the attribute "attr1" in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P40/ibm40n04.xml" TYPE="not-wf" ID="ibm-not-wf-P40-ibm40n04.xml" ENTITIES="none" SECTIONS="3.1">
Tests STag with a wrong opening sequence. The string "(less than)!" is used
as the opening sequence for the STag of the element "root".
</TEST>
<TEST URI="not-wf/P40/ibm40n05.xml" TYPE="not-wf" ID="ibm-not-wf-P40-ibm40n05.xml" ENTITIES="none" SECTIONS="3.1">
Tests STag with duplicate attribute names. The attribute name
"attr1" occurs twice in the STag of the element "root".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 41">
<TEST URI="not-wf/P41/ibm41n01.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n01.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The attribute name
is missing in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n02.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n02.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The "=" is missing
between the attribute name and the attribute value in the Attribute in the
STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n03.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n03.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The AttValue is
missing in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n04.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n04.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The Name and the
"=" are missing in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n05.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n05.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The "=" and the
AttValue are missing in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n06.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n06.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with a required field missing. The Name and the
AttValue are missing in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n07.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n07.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with wrong field ordering. The "=" occurs after the
Name and the AttValue in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n08.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n08.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with wrong field ordering. The Name and the AttValue
are swapped in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n09.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n09.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute with wrong field ordering. The "=" occurs before the
Name and the AttValue in the Attribute in the STag of the element "root".
</TEST>
<TEST URI="not-wf/P41/ibm41n10.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n10.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute against WFC "no external entity references". A direct
reference to the external entity "aExternal" is contained in the value of the
attribute "attr1".
</TEST>
<TEST URI="not-wf/P41/ibm41n11.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n11.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute against WFC "no external entity references". A indirect
reference to the external entity "aExternal" is contained in the value of the
attribute "attr1".
</TEST>
<TEST URI="not-wf/P41/ibm41n12.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n12.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute against WFC "no external entity references". A direct
reference to the external unparsed entity "aImage" is contained in the value
of the attribute "attr1".
</TEST>
<TEST URI="not-wf/P41/ibm41n13.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n13.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute against WFC "No (less than) character in Attribute
Values". The character "less than" is contained in the value of the
attribute "attr1".
</TEST>
<TEST URI="not-wf/P41/ibm41n14.xml" TYPE="not-wf" ID="ibm-not-wf-P41-ibm41n14.xml" ENTITIES="none" SECTIONS="3.1">
Tests Attribute against WFC "No (less than) in Attribute Values". The character
"less than" is contained in the value of the attribute "attr1" through indirect
internal entity reference.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 42">
<TEST URI="not-wf/P42/ibm42n01.xml" TYPE="not-wf" ID="ibm-not-wf-P42-ibm42n01.xml" ENTITIES="none" SECTIONS="3.1">
Tests ETag with a required field missing. The Name is missing in the
ETag of the element "root".
</TEST>
<TEST URI="not-wf/P42/ibm42n02.xml" TYPE="not-wf" ID="ibm-not-wf-P42-ibm42n02.xml" ENTITIES="none" SECTIONS="3.1">
Tests ETag with a wrong beginning sequence. The string "(less than)\" is used as
a beginning sequence of the ETag of the element "root".
</TEST>
<TEST URI="not-wf/P42/ibm42n03.xml" TYPE="not-wf" ID="ibm-not-wf-P42-ibm42n03.xml" ENTITIES="none" SECTIONS="3.1">
Tests ETag with a wrong beginning sequence. The string "less than" is used as
a beginning sequence of the ETag of the element "root".
</TEST>
<TEST URI="not-wf/P42/ibm42n04.xml" TYPE="not-wf" ID="ibm-not-wf-P42-ibm42n04.xml" ENTITIES="none" SECTIONS="3.1">
Tests ETag with a wrong structure. An white space occurs between The
beginning sequence and the Name of the ETag of the element "root".
</TEST>
<TEST URI="not-wf/P42/ibm42n05.xml" TYPE="not-wf" ID="ibm-not-wf-P42-ibm42n05.xml" ENTITIES="none" SECTIONS="3.1">
Tests ETag with a wrong structure. The ETag of the element "root"
contains an Attribute (attr1="any").
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 43">
<TEST URI="not-wf/P43/ibm43n01.xml" TYPE="not-wf" ID="ibm-not-wf-P43-ibm43n01.xml" ENTITIES="none" SECTIONS="3.1">
Tests element content with a wrong option. A NotationDecl is used as
the content of the element "root".
</TEST>
<TEST URI="not-wf/P43/ibm43n02.xml" TYPE="not-wf" ID="ibm-not-wf-P43-ibm43n02.xml" ENTITIES="none" SECTIONS="3.1">
Tests element content with a wrong option. An elementdecl is used as
the content of the element "root".
</TEST>
<TEST URI="not-wf/P43/ibm43n04.xml" TYPE="not-wf" ID="ibm-not-wf-P43-ibm43n04.xml" ENTITIES="none" SECTIONS="3.1">
Tests element content with a wrong option. An entitydecl is used as
the content of the element "root".
</TEST>
<TEST URI="not-wf/P43/ibm43n05.xml" TYPE="not-wf" ID="ibm-not-wf-P43-ibm43n05.xml" ENTITIES="none" SECTIONS="3.1">
Tests element content with a wrong option. An AttlistDecl is used as
the content of the element "root".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 44">
<TEST URI="not-wf/P44/ibm44n01.xml" TYPE="not-wf" ID="ibm-not-wf-P44-ibm44n01.xml" ENTITIES="none" SECTIONS="3.1">
Tests EmptyElemTag with a required field missing. The Name "root" is
missing in the EmptyElemTag.
</TEST>
<TEST URI="not-wf/P44/ibm44n02.xml" TYPE="not-wf" ID="ibm-not-wf-P44-ibm44n02.xml" ENTITIES="none" SECTIONS="3.1">
Tests EmptyElemTag with wrong field ordering. The Attribute (attri1 =
"any") occurs before the name of the element "root" in the EmptyElemTag.
</TEST>
<TEST URI="not-wf/P44/ibm44n03.xml" TYPE="not-wf" ID="ibm-not-wf-P44-ibm44n03.xml" ENTITIES="none" SECTIONS="3.1">
Tests EmptyElemTag with wrong closing sequence. The string "\>" is used
as the closing sequence in the EmptyElemtag of the element "root".
</TEST>
<TEST URI="not-wf/P44/ibm44n04.xml" TYPE="not-wf" ID="ibm-not-wf-P44-ibm44n04.xml" ENTITIES="none" SECTIONS="3.1">
Tests EmptyElemTag which against the WFC "Unique Att Spec". The
attribute name "attr1" occurs twice in the EmptyElemTag of the element "root".
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 45">
<TEST URI="not-wf/P45/ibm45n01.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n01.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with a required field missing. The Name is missing
in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n02.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n02.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with a required field missing. The white space is
missing between "aEle" and "(#PCDATA)" in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n03.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n03.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with a required field missing. The contentspec is
missing in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n04.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n04.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with a required field missing. The contentspec and
the white space is missing in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n05.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n05.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with a required field missing. The Name, the white
space, and the contentspec are missing in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n06.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n06.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with wrong field ordering. The Name occurs after the
contentspec in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n07.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n07.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with wrong beginning sequence. The string
"(less than)ELEMENT" is used as the beginning sequence in the second
elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n08.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n08.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with wrong key word. The string "Element" is used as
the key word in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P45/ibm45n09.xml" TYPE="not-wf" ID="ibm-not-wf-P45-ibm45n09.xml" ENTITIES="none" SECTIONS="3.2">
Tests elementdecl with wrong key word. The string "element" is used as
the key word in the second elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 46">
<TEST URI="not-wf/P46/ibm46n01.xml" TYPE="not-wf" ID="ibm-not-wf-P46-ibm46n01.xml" ENTITIES="none" SECTIONS="3.2">
Tests contentspec with wrong key word. the string "empty" is used as
the key word in the contentspec of the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P46/ibm46n02.xml" TYPE="not-wf" ID="ibm-not-wf-P46-ibm46n02.xml" ENTITIES="none" SECTIONS="3.2">
Tests contentspec with wrong key word. the string "Empty" is used as
the key word in the contentspec of the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P46/ibm46n03.xml" TYPE="not-wf" ID="ibm-not-wf-P46-ibm46n03.xml" ENTITIES="none" SECTIONS="3.2">
Tests contentspec with wrong key word. the string "Any" is used as
the key word in the contentspec of the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P46/ibm46n04.xml" TYPE="not-wf" ID="ibm-not-wf-P46-ibm46n04.xml" ENTITIES="none" SECTIONS="3.2">
Tests contentspec with wrong key word. the string "any" is used as
the key word in the contentspec of the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P46/ibm46n05.xml" TYPE="not-wf" ID="ibm-not-wf-P46-ibm46n05.xml" ENTITIES="none" SECTIONS="3.2">
Tests contentspec with a wrong option. The string "#CDATA" is used as
the contentspec in the second elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 47">
<TEST URI="not-wf/P47/ibm47n01.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n01.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with a required field missing. The "+" is used as the
choice or seq field in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P47/ibm47n02.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n02.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with a required field missing. The "*" is used as the
choice or seq field in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P47/ibm47n03.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n03.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with a required field missing. The "?" is used as the
choice or seq field in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P47/ibm47n04.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n04.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with wrong field ordering. The "*" occurs before the
seq field (a,a) in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P47/ibm47n05.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n05.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with wrong field ordering. The "+" occurs before the
choice field (a|a) in the second elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P47/ibm47n06.xml" TYPE="not-wf" ID="ibm-not-wf-P47-ibm47n06.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests children with wrong key word. The "^" occurs after the seq field
in the second elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 48">
<TEST URI="not-wf/P48/ibm48n01.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n01.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with a required fields missing. The field Name|choice|seq is
missing in the second cp in the choice field in the third elementdecl in the
DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n02.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n02.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with a required fields missing. The field Name|choice|seq is
missing in the cp in the third elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n03.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n03.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with a required fields missing. The field Name|choice|seq is
missing in the first cp in the choice field in the third elementdecl in the
DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n04.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n04.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with wrong field ordering. The "+" occurs before the seq (a,a)
in the first cp in the choice field in the third elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n05.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n05.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with wrong field ordering. The "*" occurs before the choice
(a|b) in the first cp in the seq field in the third elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n06.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n06.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with wrong field ordering. The "?" occurs before the Name "a"
in the second cp in the seq field in the third elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P48/ibm48n07.xml" TYPE="not-wf" ID="ibm-not-wf-P48-ibm48n07.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests cp with wrong key word. The "^" occurs after the Name "a" in the
first cp in the choice field in the third elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 49">
<TEST URI="not-wf/P49/ibm49n01.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n01.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with a required field missing. The two cps are missing in
the choice field in the third elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P49/ibm49n02.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n02.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with a required field missing. The third cp is missing in
the choice field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P49/ibm49n03.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n03.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with a wrong separator. The "!" is used as the separator
in the choice field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P49/ibm49n04.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n04.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with a required field missing. The separator "|" is
missing in the choice field (a b)+ in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P49/ibm49n05.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n05.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with an extra separator. An extra "|" occurs between a
and b in the choice field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P49/ibm49n06.xml" TYPE="not-wf" ID="ibm-not-wf-P49-ibm49n06.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests choice with a required field missing. The closing bracket ")" is
missing in the choice field (a |b * in the fourth elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 50">
<TEST URI="not-wf/P50/ibm50n01.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n01.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with a required field missing. The two cps are missing in
the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n02.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n02.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with a required field missing. The third cp is missing in
the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n03.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n03.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with a wrong separator. The "|" is used as the separator
between a and b in the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n04.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n04.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with a wrong separator. The "." is used as the separator
between a and b in the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n05.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n05.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with an extra separator. An extra "," occurs between (a|b)
and a in the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n06.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n06.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with a required field missing. The separator between (a|b)
and (b|a) is missing in the seq field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P50/ibm50n07.xml" TYPE="not-wf" ID="ibm-not-wf-P50-ibm50n07.xml" ENTITIES="none" SECTIONS="3.2.1">
Tests seq with wrong closing bracket. The "]" is used as the closing
bracket in the seq field in the fourth elementdecl in the DTD.
</TEST>
</TESTCASES>
<TESTCASES PROFILE="IBM XML Conformance Test Suite - Production 51">
<TEST URI="not-wf/P51/ibm51n01.xml" TYPE="not-wf" ID="ibm-not-wf-P51-ibm51n01.xml" ENTITIES="none" SECTIONS="3.2.2">
Tests Mixed with a wrong key word. The string "#pcdata" is used as the
key word in the Mixed field in the fourth elementdecl in the DTD.
</TEST>
<TEST URI="not-wf/P51/ibm51n02.xml" TYPE="not-wf" ID="ibm-not-wf-P51-ibm51n02.xml" ENTITIES="none" SECTIONS="3.2.2">
Tests Mixed with wrong field ordering. The field #PCDATA does not
occur as the first component in the Mixed field in the fourth elementdecl in