initial checkin. XmlTextWriter uses these objects in a stack to maintain state.
[mono.git] / mcs / class / System.XML / Test / ChangeLog
1 2002-03-22  Duncan Mak  <duncan@ximian.com>
2
3         * AllTests.cs: 
4         * Microsoft.Test.csproj: 
5         * Mono.Test.csproj: Updated to include new files.
6
7         * XmlCDataSectionTests.cs: Added to CVS.
8
9         * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me
10         setup a testing environment on VS.NET.
11
12         * XmlElementTests.cs: Reformatted.
13         (TestCloneNode): Added.
14
15         * XmlSignificantWhitespaceTests.cs: Added to CVS.
16
17         * XmlWhiteSpaceTests.cs: Added to CVS.
18                 
19 2002-03-21  Kral Ferch <kral_ferch@hotmail.com>
20
21         * XmlDocumentTests.cs: Tessts parent traversal up through
22         document itself until null.  Tests a removed elements next
23         sibling is null.
24         
25         * XmlNodeListTests.cs: Tests case where enumerator is on
26         a node that gets removed from list.
27         
28         * XmlTextWriterTests.cs: Keeping tests for WriteXXX after
29         writer is closed up to date as new WriteXXX methods are written.
30         TestDocumentStart and TestWriteEndElement.
31         
32 2002-03-19  Jason Diamond <jason@injektilo.org>
33
34         * XmlDocumentTests.cs: Added a test to check an element's names after 
35         loading.
36
37 2002-03-17  Kral Ferch <kral_ferch@hotmail.com>
38
39         * XmlDocumentTests.cs: Tests navigation to parents since
40         that was part of a document.Load() bug reported by Mike Kestner.
41         
42         * XmlTextWriterTests.cs: Tests for namespaces and prefixes.
43
44 2002-03-17  Kral Ferch <kral_ferch@hotmail.com>
45
46         * XmlDocumentTests.cs: TestOuterXml.
47         
48         * XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
49         and ProcessingInstruction.
50
51 2002-03-17  Kral Ferch <kral_ferch@hotmail.com>
52
53         * XmlDocumentTests.cs: More LoadXml tests.
54         
55         * XmlTextWriterTests.cs: Test for invalid Processing Instructions.
56
57 2002-03-14  Kral Ferch <kral_ferch@hotmail.com>
58
59         * XmlTextWriterTests.cs:  Added tests TestCData and TestComment.
60         
61 2002-03-14  Kral Ferch <kral_ferch@hotmail.com>
62
63         * XmlTextWriterTests.cs:  Initial checkin.
64         
65 2002-03-12  Kral Ferch <kral_ferch@hotmail.com>
66
67         * XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
68         TestZeroChildren, TestOneChild, TestMultipleChildren,
69         TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
70         TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
71         TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset.  Made
72         two other tests but not in use yet until RemoveAll is implemented for
73         attributes and XmlNode.ReplaceChild is implemented.  The tests are called
74         saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.
75
76 2002-03-08  Jason Diamond <jason@injektilo.org>
77
78         * XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.
79
80 2002-03-08  Jason Diamond <jason@injektilo.org>
81
82         * XmlAttributeTests.cs: Test XmlAttribute child nodes.
83
84 2002-03-08  Kral Ferch <kral_ferch@hotmail.com>
85
86         * XmlNodeListTests.cs: New file.
87
88         * AllTests.cs: Added XmlNodeListTests.
89
90 2002/03/08  Nick Drochak <ndrochak@gol.com>
91
92         * System_test.build: Don't build test dll by default.  Only build
93         it when 'make test' is specified.
94
95 2002-03-06  Kral Ferch <kral_ferch@hotmail.com>
96
97         * XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
98         
99         * XmlDocumentTests.cs: Started work on some tests for invalid data in
100         various nodes created by the document.
101
102 2002-03-02  Kral Ferch <kral_ferch@hotmail.com>
103
104         * XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
105         TestLoadCDATA(), and TestLoadComment().
106
107 2002-03-02  Jason Diamond <jason@injektilo.org>
108
109         * XmlElementTests.cs: New file.
110
111         * AllTests.cs: Added XmlElementTests.
112
113 2002-03-02  Jason Diamond <jason@injektilo.org>
114
115         * XmlTextReaderTests.cs: Test MoveToNextAttribute().
116
117         * XmlDocumentTests.cs: Test loading document containing attributes
118         and text nodes.
119
120 2002-03-02  Mike Kestner <mkestner@speakeasy.net>
121
122         * XmlAttributeTests.cs : New test suite for attrs.
123         * AllTests.cs : Add the attr suite.
124
125 2002-03-02  Jason Diamond <jason@injektilo.org>
126
127         * XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager 
128         is using its name table.
129
130         * NameTableTests.cs: Make sure NameTable is really returning the
131         same references.
132
133 2002-02-28  Jason Diamond <jason@injektilo.org>
134
135         * XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
136         Kral Ferch <kral.ferch@hotmail.com>.
137
138 2002-02-28  Jason Diamond <jason@injektilo.org>
139
140         * XmlTextReaderTests.cs: Test for XmlException when parse fail.
141
142 2002-02-27  Martin Baulig  <martin@gnome.org>
143
144         * System.XML_test.build: Build new executable RunTests.System.XML.exe
145         which you can use to run the tests on Linux.
146
147         * *.cs: Added zero-args constructors.
148
149 2002-02-26  Duncan Mak  <duncan@ximian.com>
150
151         * NameTableTests.cs: Test for System.Xml.NameTable.
152
153 2002-02-26  Jason Diamond <jason@injektilo.org>
154
155         * XmlTextReaderTests.cs: Test for namespace declarations as
156         attributes.
157
158         * XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
159         when creating the XmlNamespaceManager. Properly test HasNamespace.
160
161 2002-02-25  Jason Diamond <jason@injektilo.org>
162
163         * XmlDocumentTests.cs: Added file.
164         
165 2002-02-23  Jason Diamond <jason@injektilo.org>
166
167         * XmlTextReaderTests.cs: Added tests for qualified attributes.
168         
169 2002-02-23  Jason Diamond <jason@injektilo.org>
170
171         * ChangeLog: Added change log to this directory.
172
173         * Test.cs: Renamed to XmlTextReaderTests.cs.
174
175         * XmlTextReaderTests.cs: Added tests for NamespaceURI property.
176
177         * XmlNamespaceManagerTests.cs: Initial tests.