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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-09-292002-09-29 Nick Drochak <ndrochak@gol.com>Nick Drochak
* XmlTextReaderTest.cs (AssertEndDocument): Add messages for Asserts() so we can tell where this is failing. svn path=/trunk/mcs/; revision=7890
2002-09-21implementing tests: XmlElementTests.TestSetAttributeNodeMatt Hunter
and XmlAttributeCollectionTest.TestAppend svn path=/trunk/mcs/; revision=7681
2002-09-18xpath tests for string(), concat(), starts-with(), and contains().Kral Ferch
svn path=/trunk/mcs/; revision=7572
2002-09-142002-09-12 Piers Haken <piersh@friskit.com>Piers Haken
* XPathNavigatorEvaluateTests.cs: enable string() tests. svn path=/trunk/mcs/; revision=7460
2002-09-132002-09-12 Piers Haken <piersh@friskit.com>Piers Haken
* XPathNavigatorEvaluateTests.cs: enable last() & count() tests. svn path=/trunk/mcs/; revision=7426
2002-09-12more xpath core function tests.Kral Ferch
svn path=/trunk/mcs/; revision=7379
2002-09-12Some tests for XPathNavigator.Evaluate()Kral Ferch
svn path=/trunk/mcs/; revision=7372
2002-09-07Added XPathNavigatorMatchesTests.cs to the MonoMicro.Test projectKral Ferch
svn path=/trunk/mcs/; revision=7294
2002-08-23Implementation and tests for XmlAttributeCollection.RemoveAll and ↵Jason Diamond
XmlElement.RemoveAllAttributes courtesy of Matt Hunter <xrkune@tconl.com>. svn path=/trunk/mcs/; revision=6926
2002-08-23Correction to previous GetElementsByTagName patch courtesy of Matt Hunter ↵Jason Diamond
<xrkune@tconl.com>. svn path=/trunk/mcs/; revision=6920
2002-08-22Added implementation of namepsace qualified GetElementsByTagName courtesy ofJason Diamond
Matt Hunter <xrkune@tconl.com>. svn path=/trunk/mcs/; revision=6885
2002-08-20Added implementation of and tests for GetElementsByTagName courtesy of Matt ↵Jason Diamond
Hunter <xrkune@tconl.com>. svn path=/trunk/mcs/; revision=6788
2002-08-18Fixed matching on patterns that look like absolute XPath expressions.Jason Diamond
svn path=/trunk/mcs/; revision=6715
2002-08-182002-08-17 Jason Diamond <jason@injektilo.org>Jason Diamond
* XPathNavigator.cs: Added naive (but working) implementation of Matches. svn path=/trunk/mcs/; revision=6714
2002-08-172002-08-16 Jason Diamond <jason@injektilo.org>Jason Diamond
* XmlElement.cs: Fixed writing out qualified elements courtesy of Marcus B�rgel <marcus.buergel@gmx.de>. svn path=/trunk/mcs/; revision=6694
2002-08-172002-08-16 Jason Diamond <jason@injektilo.org>Jason Diamond
* makefile.gnu: Added SOURCES_INCLUDE and SOURCES_EXCLUDE variables to get tests to build with the new build system. svn path=/trunk/mcs/; revision=6692
2002-08-10* makefile.gnu: Use relative path to NUnitConsole_mono.exe instead ofJason Diamond
hardcoding it to /usr/local/bin. Default test suite to AllTests but allow it to be overridden from the command line. * XmlTextWriterTests.cs: Split TestWriteString into multiple tests. Added encoding parameters to all the StreamReaders in TestBaseConstructorsAndBaseStream. I think this is a bug in Mono's StreamReader since these aren't required when testing against Microsoft's. svn path=/trunk/mcs/; revision=6572
2002-08-08Added Kral's new test classes.Jason Diamond
svn path=/trunk/mcs/; revision=6528
2002-08-08Added XmlDocument event firing code.Kral Ferch
svn path=/trunk/mcs/; revision=6527
2002-08-04Fixed another bug to help get the System.XML tests running on Linux (no more ↵Jason Diamond
assertions). Added a makefile to build the System.XML tests on Linux. svn path=/trunk/mcs/; revision=6388
2002-07-122002-07-12 Piers Haken <piersh@friskit.comPiers Haken
* SelectNodesTests.cs: Added TestUnion (bug #27548) svn path=/trunk/mcs/; revision=5735
2002-07-12Added some tests for the SelectNodes method.Jason Diamond
svn path=/trunk/mcs/; revision=5717
2002-07-112002-07-11 Piers Haken <piersh@friskit.com>Piers Haken
* XmlElementTests.cs: added TestCreateElement3WithNullNamespace svn path=/trunk/mcs/; revision=5698
2002-06-25Removed my incomplete XPathScanner code.Jason Diamond
svn path=/trunk/mcs/; revision=5439
2002-05-27In System.Xml:Jason Diamond
* XmlDocumentNavigator.cs: Added file to directory. * XmlNode.cs (CreateNavigator): Implemented. (InnerText): Implemented. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of throwing exception. (Load(XmlReader)): Allow for namespace qualified attributes. * XmlElement.cs: Implemented GetAttribute(string, string) and both GetAttributeNode overloads. (SetAttributeNode(XmlAttribute)): Implemented. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string) and RemoveNamedItem(string, string). * XmlLinkedNode.cs (PreviousSibling): Implemented. * XmlTextReader.cs: Added code to maintain the order of attributes as they're parsed. XML doesn't require this but Microsoft's parser does it and matching them makes testing easier so now we have it, too. In Test: * XPathNavigatorTests.cs: Added file to directory. * AllTests.cs: Added XPathNavigatorTests to suite. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered like Microsoft's parser does it. svn path=/trunk/mcs/; revision=4971
2002-05-052002-05-05 Nick Drochak <ndrochak@gol.com>Nick Drochak
* ChangeLog: Update build file to run correct class in the test dll. svn path=/trunk/mcs/; revision=4301
2002-05-052002-05-05 Nick Drochak <ndrochak@gol.com>Nick Drochak
* AllTests.cs * NameTableTests.cs * TheTests.cs * XPathScannerTests.cs * XmlAttributeTests.cs * XmlCDataSectionTests.cs * XmlCommentTests.cs * XmlDeclarationTests.cs * XmlDocumentTests.cs * XmlDocumentTypeTests.cs * XmlElementTests.cs * XmlNamespaceManagerTests.cs * XmlNodeListTests.cs * XmlProcessingInstructionTests.cs * XmlSignificantWhitespaceTests.cs * XmlTextReaderTests.cs * XmlTextTests.cs * XmlTextWriterTests.cs * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests. Changed Ximian.Mono.Tests to MonoTests.System.Xml svn path=/trunk/mcs/; revision=4300
2002-04-09InnerXml, OuterXml, WriteContentTo, and WriteTo for most XmlNode derivatives.Kral Ferch
svn path=/trunk/mcs/; revision=3704
2002-04-06Implementation of XmlDocument.CreateNode()Kral Ferch
svn path=/trunk/mcs/; revision=3650
2002-04-02XmlTextWriter impls for WriteEndDocument and WriteFullEndElement.Kral Ferch
svn path=/trunk/mcs/; revision=3546
2002-04-01XmlTextWriter impls for LookupPrefix, WriteBase64, and WriteCharEntity.Kral Ferch
svn path=/trunk/mcs/; revision=3527
2002-03-31touchups on XmlTextWriter attribute writing.Kral Ferch
svn path=/trunk/mcs/; revision=3525
2002-03-30XmlLang and XmlSpace for XmlTextWriter.Kral Ferch
svn path=/trunk/mcs/; revision=3508
2002-03-30Working on Attribute methods for XmlTextWriter.Kral Ferch
svn path=/trunk/mcs/; revision=3507
2002-03-282002-03-28 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDocument.cs (CreateWhitespace): (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray method. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute. * XmlDeclarationTests.cs (TestConstructor): * XmlDocumentTypeTests.cs (TestAppendChild): * XmlSignificantWhitespaceTests.cs (TestXmlWhitespaceConstructor): * XmlWhiteSpaceTests.cs (TestXmlWhitespaceConstructor): Fixed the test for catching Exceptions. svn path=/trunk/mcs/; revision=3467
2002-03-27Removed XPathScannerTests from the project since VS.NET wasn't happy with ↵Jason Diamond
it. Added the tests separately to the .build file so that I can still work. svn path=/trunk/mcs/; revision=3380
2002-03-272002-03-26 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDocument.cs (CreateDocumentType): Implemented. * XmlNode.cs (Value): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new test, XmlDocumentTypeTests. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class. svn path=/trunk/mcs/; revision=3378
2002-03-262002-03-26 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlProcessingInstruction.cs (InnerText): Implemented. It works just like XmlCharacterData. * XmlCommentTests.cs (TestXmlNodeBaseProperties): Move the XmlNode.Value test in here. svn path=/trunk/mcs/; revision=3369
2002-03-26Can now scan most location paths (without predicates).Jason Diamond
svn path=/trunk/mcs/; revision=3351
2002-03-26Added XPathScanner and Tests.Jason Diamond
svn path=/trunk/mcs/; revision=3342
2002-03-262002-03-25 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDeclaration.cs: Rewrote the class, fixed formatting, added missing properties (InnerText, Value). * XmlDocument.cs (CreateXmlDeclaration): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new test, XmlDeclarationTests. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class. svn path=/trunk/mcs/; revision=3338
2002-03-23XmlTextWriter work on BaseStream, WriteState, and Namespaces.Kral Ferch
svn path=/trunk/mcs/; revision=3295
2002-03-23XmlTextWriter formatting, indenting, xml declaration stuff.Kral Ferch
svn path=/trunk/mcs/; revision=3277
2002-03-222002-03-22 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDocument.cs (CreateSignificantWhitespace): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new files. * XmlSignificantWhitespaceTests.cs: Added to CVS. svn path=/trunk/mcs/; revision=3268
2002-03-222002-03-22 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlElement.cs: Reformatted. (CloneNode) Corrected. * XmlDocument.cs (CreateWhitespace): Implemented. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to true, because Attributes have ChildNodes. 2002-03-22 Duncan Mak <duncan@ximian.com> * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new files. * XmlCDataSectionTests.cs: Added to CVS. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me setup a testing environment on VS.NET. * XmlElementTests.cs: Reformatted. (TestCloneNode): Added. * XmlWhiteSpaceTests.cs: Added to CVS. svn path=/trunk/mcs/; revision=3267
2002-03-21xmltextwriter writestartdocument and writeendelement.Kral Ferch
svn path=/trunk/mcs/; revision=3249
2002-03-19Fixed typo in XmlDocument.Load that was duplicating the LocalName in the Prefix.Jason Diamond
svn path=/trunk/mcs/; revision=3209
2002-03-19namespace and prefix support in XmlTextWriterKral Ferch
svn path=/trunk/mcs/; revision=3195
2002-03-18More XmlTextWriter and node WriteTo.Kral Ferch
svn path=/trunk/mcs/; revision=3176
2002-03-17Work on XmlDocument and XmlTextWriterKral Ferch
svn path=/trunk/mcs/; revision=3175