Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Test « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1ccbe15a33ab04fdd3c382246976a4a5cb912b1 (plain)
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
2002-03-19  Jason Diamond <jason@injektilo.org>

	* XmlDocumentTests.cs: Added a test to check an element's names after 
	loading.

2002-03-17  Kral Ferch <kral_ferch@hotmail.com>

	* XmlDocumentTests.cs: Tests navigation to parents since
	that was part of a document.Load() bug reported by Mike Kestner.
	
	* XmlTextWriterTests.cs: Tests for namespaces and prefixes.

2002-03-17  Kral Ferch <kral_ferch@hotmail.com>

	* XmlDocumentTests.cs: TestOuterXml.
	
	* XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
	and ProcessingInstruction.

2002-03-17  Kral Ferch <kral_ferch@hotmail.com>

	* XmlDocumentTests.cs: More LoadXml tests.
	
	* XmlTextWriterTests.cs: Test for invalid Processing Instructions.

2002-03-14  Kral Ferch <kral_ferch@hotmail.com>

	* XmlTextWriterTests.cs:  Added tests TestCData and TestComment.
	
2002-03-14  Kral Ferch <kral_ferch@hotmail.com>

	* XmlTextWriterTests.cs:  Initial checkin.
	
2002-03-12  Kral Ferch <kral_ferch@hotmail.com>

	* XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
	TestZeroChildren, TestOneChild, TestMultipleChildren,
	TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
	TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
	TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset.  Made
	two other tests but not in use yet until RemoveAll is implemented for
	attributes and XmlNode.ReplaceChild is implemented.  The tests are called
	saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.

2002-03-08  Jason Diamond <jason@injektilo.org>

	* XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.

2002-03-08  Jason Diamond <jason@injektilo.org>

	* XmlAttributeTests.cs: Test XmlAttribute child nodes.

2002-03-08  Kral Ferch <kral_ferch@hotmail.com>

	* XmlNodeListTests.cs: New file.

	* AllTests.cs: Added XmlNodeListTests.

2002/03/08  Nick Drochak <ndrochak@gol.com>

	* System_test.build: Don't build test dll by default.  Only build
	it when 'make test' is specified.

2002-03-06  Kral Ferch <kral_ferch@hotmail.com>

	* XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
	
	* XmlDocumentTests.cs: Started work on some tests for invalid data in
	various nodes created by the document.

2002-03-02  Kral Ferch <kral_ferch@hotmail.com>

	* XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
	TestLoadCDATA(), and TestLoadComment().

2002-03-02  Jason Diamond <jason@injektilo.org>

	* XmlElementTests.cs: New file.

	* AllTests.cs: Added XmlElementTests.

2002-03-02  Jason Diamond <jason@injektilo.org>

	* XmlTextReaderTests.cs: Test MoveToNextAttribute().

	* XmlDocumentTests.cs: Test loading document containing attributes
	and text nodes.

2002-03-02  Mike Kestner <mkestner@speakeasy.net>

	* XmlAttributeTests.cs : New test suite for attrs.
	* AllTests.cs : Add the attr suite.

2002-03-02  Jason Diamond <jason@injektilo.org>

	* XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager 
	is using its name table.

	* NameTableTests.cs: Make sure NameTable is really returning the
	same references.

2002-02-28  Jason Diamond <jason@injektilo.org>

	* XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
	Kral Ferch <kral.ferch@hotmail.com>.

2002-02-28  Jason Diamond <jason@injektilo.org>

	* XmlTextReaderTests.cs: Test for XmlException when parse fail.

2002-02-27  Martin Baulig  <martin@gnome.org>

	* System.XML_test.build: Build new executable RunTests.System.XML.exe
	which you can use to run the tests on Linux.

	* *.cs: Added zero-args constructors.

2002-02-26  Duncan Mak  <duncan@ximian.com>

	* NameTableTests.cs: Test for System.Xml.NameTable.

2002-02-26  Jason Diamond <jason@injektilo.org>

	* XmlTextReaderTests.cs: Test for namespace declarations as
	attributes.

	* XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
	when creating the XmlNamespaceManager. Properly test HasNamespace.

2002-02-25  Jason Diamond <jason@injektilo.org>

	* XmlDocumentTests.cs: Added file.
	
2002-02-23  Jason Diamond <jason@injektilo.org>

	* XmlTextReaderTests.cs: Added tests for qualified attributes.
	
2002-02-23  Jason Diamond <jason@injektilo.org>

	* ChangeLog: Added change log to this directory.

	* Test.cs: Renamed to XmlTextReaderTests.cs.

	* XmlTextReaderTests.cs: Added tests for NamespaceURI property.

	* XmlNamespaceManagerTests.cs: Initial tests.