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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
|
2006-11-20 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTests.cs : added tests for relationship between
ConformanceLevel, OmitXmlDeclaration and WriteStartDocument().
2006-11-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added test for bug #79224; it does not
load external schemas when validation mode is none.
2006-11-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added validation event handler test
case.
2006-11-13 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added custom resolver case for primary
XML stream (custom resolver is indeed used and here it should cause
error).
2006-11-13 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added NullResolver() case.
2006-10-27 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : the previous test raises different
exception in 2.0.
2006-10-27 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : added bug #79650 case.
2006-10-27 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added bug #79683 case.
2006-09-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlDeclarationTests.cs : added bug #79496 case.
2006-09-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : added bug #79468 case.
2006-09-19 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : added test for #79420.
* XmlAttributeTests.cs : added similar test.
* XmlDocumentTests.cs : fix warnings.
2006-09-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added test for bug #79268.
2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added test for bug #79047
2006-08-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : added test for bug #79163.
2006-08-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added test for whitespace node value which
comes after a text declaration in XML external entity (i.e. .ctor()
with XmlNodeType.Element).
2006-08-10 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : more indentation tests.
2006-08-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : test for #79019.
2006-07-28 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added test case for comments, PIs and
indentation.
2006-07-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTest.cs :
Added TimeSpan conversion test for min/max values.
2006-06-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added test for bug #78706.
2006-06-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added test for bug #78598.
2006-05-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeTests.cs : added NonEmptyPrefixWithEmptyNS().
2006-04-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : test for bug #78148.
2006-04-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added test for ReadElementContentAs()
with argument typeof(object).
2006-04-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs :
Added CreateValidatorFromNonIXmlNamespaceResolver() which is
uncovered by NVDL validator.
* XmlDefaultReader.cs : new file for above.
2006-04-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added test for
ReadElementContentAsString() and empty element.
2006-04-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTest.cs : added tests on set_Encoding(),
set_NewLineChars() and OmitXmlDeclaration.
2006-03-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : Added tests for ReadContentAsString() and
ReadElementContentAsString().
2006-02-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added test for bug #77623. Also fixed
WriteString() test which failed to fail (Assert.Fail).
2006-02-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added invalid character processing test.
2006-02-20 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added custom assertion overload that takes
test label.
* XmlNodeReaderTests.cs : labeled some.
* XmlTextWriterTests.cs :
Changed the semantics of AttributeNamespacesXmlnsXmlns() and
removed NotDotNet (in contrast this test should fail with previous
version of XmlTextWriter). See the code comment for details.
Added WriteQualifiedNameXmlnsError().
2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added WhitespaceHandling tests.
2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : tiny test name fix, as it does not actually
test WriteString().
2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added test WriteRaw("") closes open tag.
2006-02-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : numbered some tests and added some comments.
2006-01-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : added test for bug #77350.
2006-01-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : added test for bug #77252.
2006-01-13 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : test from bug #77241.
2006-01-13 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added some tests for XMLdecl state check.
2006-01-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Split AutoCreatePrefixes() and marked as
Ignore rather than NotWorking. Also it is not for bug #77086 and
#77077 (they were fixed). See bug #77088.
2006-01-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : re-enabled WriteNmToken_InvalidChars().
2006-01-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : re-enabled bug #77094 related tests.
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterTests.cs : added tests for WriteNode(XPathNavigator, bool)
as well as XPathNavigator.WriteSubtree(XmlWriter).
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : test for ReadTypeValue() that it
does not ignore whitespace nodes, and it does not normalize string
incorrectly.
2006-01-06 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : test for ReadTypeValue() with simple
type restriction.
2006-01-05 Gert Driesen <drieseng@users.sourceforge.net>
* XmlElementTests.cs: Improved tests for setting prefix to null
or zero-length string. On 2.0 profile, setting prefix to null should
not result in ArgumentNullException.
* XmlTextWriterTests.cs: Enabled WriteNmToken tests and
WriteWhitespace tests for null or zero-length value.
2006-01-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : removed silly part from
WriteStartElement_XmlPrefix (). We are not reproducing MS bugs.
(kept remaining part of this test; see if it makes sense after
bug #77094 got fixed).
2005-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Do not yet enable tests for WriteWhitespace
with null or zero-length value (await approval for XmlTextWriter
change from Atsushi).
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Do not yet enable tests for WriteNmToken
with null or zero-length value (await approval for XmlTextWriter
change from Atsushi).
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Added tests for WriteWhitespace and
WriteNmToken.
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* NameTableTests.cs: Added additional tests for Add and Get methods.
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
2005-12-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : enabled
WriteStartElement_Prefix_EmptyNamespace() and
NamespacesPrefixWithEmptyAndNullNamespaceEmpty().
2005-12-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : Patch by Vorobiev Maksim.
- setting null to Prefix should raise ArgumentNullException.
- setting String.Empty to Prefix should be allowed.
2005-12-26 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : test for multi URLs in
schemaLocation. Test by Vorobiev Maskim.
2005-12-26 Gert Driesen <drieseng@users.sourceforge.net>
* XmlElementTests.cs: Fixed line endings.
2005-12-26 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Renamed tests to avoid ambiguity, and
renumbered some tests. Added tests for WriteStartElement and
WriteElementString for zero-length and null local names.
Added tests bugs #77093, #77094 and #77095.
2005-12-26 Gert Driesen <drieseng@users.sourceforge.net>
* XmlNamespaceManagerTests.cs: Added tests for xml prefix.
2005-12-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : XmlSpace_Valid() is working now.
2005-12-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : XmlNs_Valid2() is working now.
2005-12-23 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Fixed line endings. Enabled XmlPrefix_ValidMS
test. Added bug numbers to test cases.
2005-12-23 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Improved coverage of xml prefix tests.
2005-12-16 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: Fixed some tests that caught exception to
become useful. Added few tests that fail on Mono.
2005-12-16 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTextWriterTests.cs: No longer derive from deprecated Assertion
class. Added WriteDocType tests.
* XmlWriterTests.cs: No longer derive from deprecated Assertion class.
2005-12-15 Konstantin Triger <kostat@mainsoft.com>
* XmlTextWriterTests.cs: added WriteCDataNull test.
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : (CreateNodeNodeTypeName) the previous fix was
wrong; ArgumentException is the expected exception (it anyways won't
work under MS.NET 2.0).
* XmlNodeTests.cs : added labels to assertions. another NotDotNet case.
* XmlAttributeTests.cs : ditto.
2005-12-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs, XmlAttributeCollectionTests.cs
XmlElementTests.cs, XmlCharacterDataTests.cs :
Marked NotDotNet for some tests broken under 2.0 (MS bugs).
Marked Ignore for some tests which originally does not make sense.
Changed types in ExpectedException for some tests under 2.0.
2005-12-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlAssert.cs : new file.
2005-12-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : enabled MoveToNextSibling() tests.
2005-12-12 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added several tests for 2.0 methods.
2005-12-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added test for Encoding property.
2005-12-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added tests for ReadToDescendant() and
ReadToFollowing().
2005-12-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added some ConformanceLevel tests.
Added CreateClonesSettings() to make sure XmlReader.Create() clones
XmlReaderSettings.
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : (DefaultValue)
Added assertion label everywhere.
* XmlWriterTests.cs : WriteNodeError is broken under MS.NET 2.0 (it
should cause an error).
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : SetSchemas() should not cause an error.
Added SetSchemasNull() as well.
* XmlUrlResolverTests.cs : (ResolveUriWithNullArgs)
expect ArgumentNullException instead of ArgumentException.
This is a fix in .NET 2.0.
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
* XsdParticleValidationTests.cs : ValidateRootElementOnlyInvalid()
does not throw validation exception under MS 2.0, this NotDotNet.
2005-12-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : use ProhibitDtd=false in CreateSimple()
and added CreateSimpleProhibitDtd().
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTests.cs : NormalizeNewLines does not exist anymore
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : tests for ToUInt16/32/64() and VerifyTOKEN().
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : some tests for ToInt64(), ToSByte(),
2005-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : some tests for ToInt16(), ToInt32(),
VerifyName() and VerifyNCName().
2005-11-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : XmlSchemaValidationFlags is updated.
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlNamespaceManagerTests.cs :
well, hence GetNamespacesInScope() is NotDotNet.
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
labels. Fixed counts; they count default namespaces. MS seems to
have a bug on declaration removal (xmlns='') on .Local.
* XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
allowed at all, so disabled tests that depends on such references.
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : split some tests that try to write nodes
at error state (.NET 2.0 correctly rejects them).
2005-10-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
XmlReaderCommonTests.cs : added and fixed tests to make sure that
LookupNamespace("") returns null for default namespace, and checks
that empty namespace URI is not allowed for non-empty prefix.
2005-10-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : added test for bug #76328.
2005-10-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTests.cs : test for NormalizeNewLines.
2005-10-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeTests.cs : test for bug #76311.
2005-10-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added simple Create() test.
2005-09-28 Atsushi Enomoto <atsushi@ximian.com>
* XmlNodeReaderTests.cs : added test for bug #76260.
2005-09-27 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added test for bug #76247.
2005-09-26 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : added test for bug #76234.
2005-09-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
2005-09-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTests.cs : removed NormalizeNewLines.
2005-09-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
* NameTableTests.cs : numbered testcases. fixed argument order.
2005-09-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added #76102 testcase.
2005-09-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added #76095 testcase.
2005-08-31 Sebastien Pouliot <sebastien@ximian.com>
* XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
* XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
* XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
2005-08-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeTests.cs : Test if set_Value() works in such cases that
there was only one child in attribute and it was an entity reference.
2005-07-28 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : added test case for duplicating
assignment of both Schemas.Add() and xsi:schemaLocation where
schemaLocation could not be resolved.
2005-07-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added bug #75546 testcase.
2005-06-29 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : added timespan milliseconds testcase.
2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added a testcase for not-wf entity
declaration which is actually not used in the instance.
2005-06-23 Atsushi Enomoto <atsushi@ximian.com>
* XsdParticleValidationTests.cs : XmlSchemaException ->
XmlSchemaValidationException under 2.0 profile.
2005-06-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : added attribute namespace check in
DefaultXmlnsAttributeLookup() as well.
2005-06-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
2005-05-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : let's test external DTD as well.
2005-05-31 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
is imported from sys.security.
2005-05-25 Andrew Skiba <andrews@mainsoft.com>
* W3C : directory added
2005-05-10 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
which was regarded as a bug while it was by design.
2005-05-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlNamespaceManagerTests.cs : removed more atomizedName tests.
2005-05-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlNamespaceManagerTests.cs : removed atomizedName related tests.
2005-03-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added more test case for xml:space.
2005-03-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
2005-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : Added test for sequential text nodes
which affects on ExpandEntities.
2005-03-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
2005-03-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
Test case by Konstantin Triger.
2005-03-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
2005-03-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added testcase for duplicating namespace
mapping processing (should create another prefix, not exception).
2005-03-02 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Added test for LookupPrefix() for
overriden prefix.
2005-02-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlNodeTests.cs : added Clone() of readonly node returns a node
that is not readonly.
2005-02-25 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeTests.cs : added nonNCName Prefix case.
2005-02-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
2005-02-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : added some null/empty string cases for
EncodeName()/EncodeLocalName()/EncodeNmToken().
2005-02-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : assertion numbering on
RemoveDoesNotRemoveDefaultAttributes().
2005-01-26 Nick Drochak <ndrochak@ieee.org>
* XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
test method and ignore it on .NET.
2005-01-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added some .ctor() tests.
2005-01-13 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : added labels for tests.
Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
no consistent reference implementation to follow.
2005-01-13 Atsushi Enomoto <atsushi@ximian.com>
* XmlValidatingReaderTests.cs,
XmlReaderCommonTests.cs,
XmlTextWriterTests.cs,
XmlUrlResolverTests.cs :
Marked as NotDotNet for those tests that fails under MS.NET.
Commented out some XmlTextWriter implementation-dependent assertions.
Fixed ResolveUriWithNullArgs () expected return type.
2005-01-11 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
2004-01-11 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs :
Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
2004-01-11 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
that is buggy on attribute value's Prefix and NamespaceURI.
2005-01-10 Nick Drochak <ndrochak@ieee.org>
* XmlWriterTests.cs: Fix build warnings.
* XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
has different default attributes it seems.
2004-12-15 Raja R Harinath <rharinath@novell.com>
* XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
XsdValidate references to use ValidationType.
2004-12-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : updated some boolean flags to
XmlSchemaValidationFlags.
2004-11-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
2004-11-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterTests.cs : Added test for WriteAttributes().
2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlNodeReaderTests.cs : numbered some of asserts.
2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added tests for 2.0 entity handling.
* XmlValidatingReaderTests.cs : modified tests for entity handling
that are changed in 2.0.
2004-10-29 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : ReadAsObject() is removed.
* XmlTextWriterTests.cs : added CloseTwice().
* XmlNodeTests.cs : added labels.
2004-09-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlWriterSettingsTests.cs : added.
2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : Added tests for ReadAsObject().
2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlNamespaceManagerTests.cs : Added test for duplicate addition,
atomization, complex RemoveNamespace() and GetNamespacesInScope().
2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
* XmlTextReaderTests.cs : added normalization and Setting sests.
2004-09-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : added another set_InnerXml test.
* XmlNodeTests.cs : added BaseURI test.
* XmlTextReaderTests.cs : added tests for Normalization, EOF,
LineNumber, LinePosition (all reported ones).
* XsdValidatingReaderTests.cs : more descriptions.
2004-09-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added ProhibitDtd().
* XmlWriterTests.cs : added WriteNodeError().
2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
It requires CAS.
2004-06-18 Atsushi Enomoto <atsushi@ximian.com>
* XmlSecureResolverTests.cs : [TestFixture] was missing.
2004-06-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
2004-06-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
URI file:///usr/local/src as correct file path. MS.NET is not aware
of such format and parses as "host = usr, path = /local/src".
2004-06-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Added indentation testcase (it might now
work due to CompareInfo.IndexOf() bug).
2004-06-06 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added some namespace check tests.
2004-05-27 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextReaderTests.cs : added test for bug #59142.
* XmlTextWriterTests.cs : added test for bug #59154.
* XmlDocumentTests.cs : added test for bug #59155.
2004-05-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlNodeTests.cs : added Normalize2().
2004-05-13 Atsushi Enomoto <atsushi@ximian.com>
* XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
kind of thing that should be supported.
* XmlValidatingReaderTests.cs : commented a bit.
2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlConvertTests.cs : Commented out locale-dependent tests.
* XmlDocumentTests.cs : Uncommented now-testable lines.
Commented out that should not be allowed, such as non-XML-name node.
2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
* XmlDeclarationTests.cs : More InnerText tests.
2004-04-20 Atsushi Enomoto <atsushi@ximian.com>
* XmlCharacterDataTests.cs : Added more tests for Substring().
* XmlConvertTests.cs : Commented out locale-dependent tests.
* XmlDocumentTests.cs : Added LoadEntityReference().
2004-03-31 Atsushi Enomoto <atsushi@ximian.com>
* Added nist_dom tests from Mainsoft hackers.
* Added XmlSecureResolverTests.cs.
2004-03-16 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
should be written regardless of document.PreserveWhitespace.)
2004-03-15 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
EndElement.
2004-03-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeCollectionTests.cs : Added InsertAfterError().
* XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
2004-03-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : added Implementation().
2004-02-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
2004-02-05 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
ReadNodeWhitespace().
* XmlElementTests.cs : Added SetAttributeNodeError().
2004-02-04 Atsushi Enomoto <atsushi@ximian.com>
* XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
DescendantsRecursively and added more test lines.
Added ChildNodes().
* XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
it is ignored (since XmlNodeReader behaves differently, maybe bug).
2004-02-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlReaderCommonTests.cs : Added SurrogatePairContent().
* XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
* XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
2004-01-28 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
* XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
element, removed extraneous test switch for InsertBefore().
* XsdParticleValidationTests.cs,
XsdValidatingReaderTests.cs : These test class names are too
ambiguous so just renamed them. (No bug reports are found on them,
but should be warned in the meantime.)
2004-01-23 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : Added SetAttributeXmlns.
* XmlTextWriterTests.cs : Added several xmlns-related tests.
2004-01-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
2004-01-20 Atsushi Enomoto <atsushi@ximian.com>
* XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
* XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
2004-01-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
* XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
Close or avoid XmlTextReader.
2004-01-03 Atsushi Enomoto <atsushi@ximian.com>
* XmlAttributeCollectionTests.cs :
added InsertAfterReplacesInCorrectOrder().
* XmlUrlResolverTests.cs : fixed file path.
* XmlTextReaderTests.cs : fixed file path.
* XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
2003-12-21 Atsushi Enomoto <atsushi@ximian.com>
* XmlDocumentTests.cs, XmlElementTests.cs :
Added GetElementsByTagNameNs2().
2003-12-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlDeclarationTests.cs : Added InvalidInnerText().
* XmlDocumentTests.cs : CRLF fix (to LF)
* XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
* XmlValidatingReaderTests.cs : Fixed entity handling check tests.
2003-11-28 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlWriterTests.cs : Added WriteNodeFullDocument() with
encoding specification. Added WriteNodeNonEmptyElement().
* XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
and GetEntityWithRelativeFileUri().
* XmlTextWriterTests.cs : Added some namespace related tests.
* XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
* XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
nodes.
* XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
* XmlDeclarationTests.cs : Added InvalidInnerText().
* XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
2003-10-13 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlWriterTests.cs : Added WriteSurrogateCharEntity().
2003-10-13 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlElementTests.cs : Added more tests on
RemoveDoesNotRemoveDefaultAttributes().
* XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
GetNamespaceOfPrefixNullArg().
* XmlWriterTests.cs : Added WriteNodeNone().
2003-10-05 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
methods.
* XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
and added GetEntityWithNullArgs() (though it is uncommented).
* XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
testing phase.
2003-09-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
2003-09-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
which is rather buggy than their XmlNodeReader.
* XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
and trivial messagefix.
2003-09-21 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
2003-08-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
EmptyStringHasTextNode().
* XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
* XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
ReadAttributeValue().
* XmlTextReaderTests.cs :
Added NotAllowedCharRef() and ExpandParameterEntity().
Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
and UndeclaredEntityInStandaloneXml().
* XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
refactory.
* Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
2003-08-05 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
should be ExpandCharEntities.
* XmlValidatingReaderTests.cs : added ResolveEntity(),
ResolveEntity2() and ResolveEntityWithoutDTD().
2003-07-31 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
CreateEntityReferencesWithoutDTD().
* XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
ResolveEntityWithoutDTD().
2003-07-29 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
* XmlElementTests.cs : added WriteToDefaultAttribute() test.
* XmlNodeTests.cs : added InnerXmlWithXmlns () test.
* XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
* XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
entity reference inside text content (and it now fails).
2003-07-26 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlAttributeTests.cs : added IdentityConstraints().
* XmlDocumentTests.cs : added DocumentTypeNodes().
* XmlNodeTests.cs : added InnerText().
* XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
testing reader. Added IndexerAndAttributes().
* XmlValidatingReader.cs : modified TestAttributes() to have
ReadAttributeValue() tests. Added TestIdentityConstraints()
2003-07-24 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlConvertTests.cs,
XmlNodeTests.cs,
XmlTextWriterTests.cs : removed some compilation warning.
* XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
incorrect commit.
* XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
and changed PrepareXmlReader() as returning validating reader.
Added indexer (this[]) property check and ValidationType.None check
to TestAttributeDefaultContribution().
Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
2003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlValidatingReaderTests.cs : added TestValidationEvent() and
some code refactory.
2003-07-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
TestAttributeDefaultContribution().
2003-07-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
ReadState check.
* ChangeLog was incorrectly added about above stuff.
* XmlTextReaderTests.cs : added some reader's state check tests and
ReadAsElementContent and ReadAsAttributeContent.
* XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
2003-07-06 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlValidatingReaderTests.cs.
2003-07-01 Martin Willemoes Hansen <mwh@sysrq.dk>
* XmlTextWriterTests.cs: Made use of ExpectedException
2003-07-01 Martin Willemoes Hansen <mwh@sysrq.dk>
* Made tests which expect an exception use the
ExpectedException Attribute.
2003-06-20 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlUrlResolverTests.cs.
2003-06-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
* XmlTextReaderTests.cs : added ExternalDocument() which will result
in BaseURI test and DTD parameter entity test.
2003-06-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
EmptyElementWithAttributes() and was added namespaced attribute tests.
* XmlTextWriterTests.cs : added WriteWhitespace().
2003-06-10 Zoltan Varga <vargaz@freemail.hu>
* XmlDocumentTests.cs: New test for null prefix and namespaceURI in
CreateAttribute.
2003-06-01 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlConvertTests.cs : added VerifyNCName().
2003-05-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
added more tests to AttributeWriteAttributeString().
* XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
2003-05-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
* XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
and not well-formed xml of OuterXmlWithDefaultXmlns().
* XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
WriteToWithDefaultNamespace().
* XmlNodeReaderTests.cs : fixed incorrect result expectation of
ReadInnerXmlWrongInit().
* XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
* XmlReaderCommonTests.cs,
XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
to resolve these entity references.
* XmlTextWriterTests.cs : removed English-dependent error message check.
fixed incorrect state-check ignorant blocks of WriteAttributes ().
* XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
XmlDecl() as MS.NET results in.
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
* Tests inherits from Assertion and Assertion. prefixes removed
2003-05-05 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlConvertTests.cs.
2003-04-29 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlAttributeTests.cs : added WriteTo.
* XmlReaderCommonTests.cs,
XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
they requires IsEmptyElement = false, which is always true for
XmlNodeReader).
2003-04-27 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlReaderCommonTests.cs,
XmlTextReaderTests.cs : Moved many tests to CommonTests.
2003-04-25 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlWriterTests.cs : added some WriteNode() related testcases.
2003-04-13 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
* XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
LoadDocumentWithIgnoreSection.
2003-04-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added this file as a new entry.
See ../ChangeLog to find ChangeLog entries before than this day.
|