| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957 |
- 2006-03-23 Senganal T <[email protected]>
- * DataTableTest2.cs :
- - Ensure duplicate rows are merged when using LoadDataRow
- * DataRowCollectionTest2.cs :
- - Ensure row can be searched using Find (), when added using LoadDataRow
- 2006-03-22 Senganal T <[email protected]>
- * DataColumnTest2.cs :
- * ConstraintCollectionTest2.cs :
- - Ensure Constraints are correctly added/removed when Unique
- property is modified.
- - Ensure PrimaryKeyConstraint cannot be removed using Remove ()
- - Ensure DataColumn's Unique Propery is modifed when adding/removing constraint
- 2006-03-20 Senganal T <[email protected]>
- * DataSetTest2.cs
- - Added testcases for issues in Merge,Copy
- * ConstraintCollectionTest2.cs
- - Added testcases for issues in Add , IndexOf
- 2006-03-19 Boris Kirzner <[email protected]>
-
- * ConstraintCollectionTest2.cs, DataColumnCollectionTest.cs,
- DataRowCollectionTest.cs, DataTableCollectionTest.cs: ifdef code that is not
- supposed to work in TARGET_JVM by now.
- 2006-03-09 Senganal T <[email protected]>
-
- * DataRowCollectionTest2.cs :
- * DataTableTest2.cs :
- - Fixed NotWorking tests.
- 2006-03-07 Senganal T <[email protected]>
- * DataRowCollectionTest2.cs :
- * DataTableTest2.cs :
- - Added failing testcases as NotWorking tests.
- 2006-03-05 Senganal T <[email protected]>
-
- * DataSetTest2.cs
- * ConstraintCollectionTest2.cs
- * DataViewTest.cs
- * DataRelationTest.cs
- Added testcases for BeginInit and EndInit methods
- 2006-02-24 Senganal T <[email protected]>
-
- * ConstraintCollectionTest2.cs : added testcase for #77630
-
- 2006-02-22 Senganal T <[email protected]>
- * DataRowCollectionTest2.cs : Check if index is maintained for row on calling RejectChanges.
- * DataTableTest2.cs : Check if data is loaded and merged (if key exists) correctly.
- * ForeignKeyConstraintTest.cs : Check if a ParentColumn value can be modified
- when the row is in 'Added' State. Also, check if child col values are
- updated correctly.
- 2006-02-16 Senganal T <[email protected]>
- * DataSetTest2.cs :
- - WriteXmlSchema_ForeignKeyConstraint : testcase for bug #77557
- - WriteXmlSchema_RelationAnnotation :
- - WriteXmlSchema_Relations_ForeignKeys :
- ensure Relations and ForeignKeyConstraints are written and read correctly.
- * DataSetReadXmlSchema.cs :
- - ReadConstraints :
- verify reading a foreignkeyconstraint doesent create a relation.
- - ReadAnnotatedRelations_MultipleColumns :
- verify multiple columns are read correctly if part of annotated relation.
- 2006-02-11 Senganal T <[email protected]>
- * DataTableTest.cs : Check AllowDBNull is set to false for PrimaryKey cols.
- * DataTableTest2.cs : added testcases for bug #77404
- 2006-02-03 Senganal T <[email protected]>
- * DataTableCollectionTest2.cs,EvaluateExceptionTest.cs,
- DataColumnTest.cs,DataRowViewTest.cs,DataRowCollectionTest2.cs,
- DataTableTest2.cs,DataTableTest.cs,DataColumnCollectionTest2.cs,
- DataColumnCollectionTest.cs,DataViewTest.cs,DataColumnTest2.cs
- - Removed 'NotWorking' attributes for the testcases fixed
- - Added few new testcases
- 2006-01-17 Senganal T <[email protected]>
- * DataRowTest2.cs : added testcase for bug #77267
- 2006-01-16 Boris Kirzner <[email protected]>
- * DataColumnCollectionTest2.cs: added test case for index update on
- column removal
- 2006-01-16 Atsushi Enomoto <[email protected]>
- * TypedDataSetGeneratorTest.cs : added test for bug #77248, but we
- cannot enable it since it depends on mcs "installed".
- 2006-01-10 Senganal T <[email protected]>
- * DataViewTest2.cs
- - Added testcase for bug #77188
- 2006-01-06 Senganal T <[email protected]>
- * DataColumnTest.cs
- * DataColumnCollectionTest.cs
- - Added couple of tests for Expression Columns.
- 2006-01-03 Senganal T <[email protected]>
- * DataSetTypedDataSetTest.cs : corrected the path to file : TypedDataSet.xml
- to make sure the testcases pass
- 2006-01-03 Senganal T <[email protected]>
- *DataViewTest.cs : added testcases for bug #77104
- 2006-01-02 Boris Kirzner <[email protected]>
- * DataTableCollectionTest2.cs, DataColumnTest2.cs,
- DataViewTest2.cs, DataRowCollectionTest2.cs, DataTableTest2.cs,
- DataRelationCollectionTest2.cs, ForeignKeyConstraintTest2.cs,
- DataSetTest2.cs, ConstraintCollectionTest2.cs, DataRowTest2.cs,
- DataColumnCollectionTest2.cs: new tests from Mainsoft repository.
- * DataSetTypedDataSetTest.cs, VersionNotFoundException.cs,
- MissingPrimaryKeyExceptionTest.cs: added files with new tests.
- * TypedDataSet.xml - new xml file (for TypeDataSetTest.cs).
- 2005-12-20 Senganal T <[email protected]>
- * DataColumnTest.cs : added testcase for #77025
-
- 2005-12-15 Konstantin Triger <[email protected]>
- * DataTableTest.cs: added SelectRowState test.
- 2005-12-07 Boris Kirzner <[email protected]>
- * DataTableTest.cs: added ifdef for feature not supported in TARGET_JVM.
- 2005-11-30 Konstantin Triger <[email protected]>
- * DataColumnTest.cs: Added ExpressionSubstringlimits.
- 2005-11-11 Senganal T <[email protected]>
- * DataSetTest2.cs : Added a testcase for bug#76517
- 2005-10-24 Konstantin Triger <[email protected]>
- * DataTableTest.cs: Added test for object type validation (ColumnObjectTypeTest)
- 2005-10-21 Senganal T <[email protected]>
- * DataTableTest2.cs : addded test for #76213
- 2005-10-20 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : added test for #76480.
- 2005-10-14 Sureshkumar T <[email protected]>
- * DataViewTest_IBindingList.cs (FindTest): mark working. According
- to printed DataView, the index returned is correct.
- 2005-10-11 Sureshkumar T <[email protected]>
- * DataViewTest_IBindingList.cs: Added test cases for IBindingList
- implementation by DataView. This is used by DataGrid control.
- 2005-09-20 Sureshkumar T <[email protected]>
- * DataViewTest.cs: Added a case for Sort to accept columns with
- '[' & ']'.
- (SortTests): Added cases for sorting order. TestCase from Marc
- 2005-08-02 Sureshkumar T <[email protected]>
- * DataTableTest.cs: Select (): added a case for apos escaping.
- 2005-08-02 Boris Kirzner <[email protected]>
- * DataSetTest2.cs: added test case for ReadXmlSchema with relations and
- keys.
- 2005-07-21 Sureshkumar T <[email protected]>
- * ForeignKeyConstraintTest.cs: added tests when adding fk
- constraints with existing rows.
-
- 2005-07-21 Boris Kirzner <[email protected]>
- * DataRowTest2.cs - Added RowError testcases.
- 2005-07-12 Eyal Alalouf <[email protected]>
- * ConstraintExceptionTest.cs: Removed use of obsolete System.Data.Tests.Mainsoft/GHTUtils
- * DataRelationTest2.cs: Removed use of obsolete System.Data.Tests.Mainsoft/GHTUtils
- 2005-07-12 Eyal Alalouf <[email protected]>
- * DeletedRowInaccessibleExceptionTest: Added file
- * DuplicateNameExceptionTest: Added file
- * ConstraintExceptionTest: Added file
- * EvaluateExceptionTest: Added file
- * InRowChangingEventExceptionTest: Added file
- * InvalidConstraintExceptionTest: Added file
- * NoNullAllowedExceptionTest: Added file
- * ReadOnlyExceptionTest: Added file
- * SyntaxErrorExceptionTest: Added file
- * RowNotInTableExceptionTest: Added file
- 2005-07-12 Eyal Alalouf <[email protected]>
- * DataRelationTest2.cs: Added file
- * DataRowTest2.cs: Added file
- * DataRowCollectionTest2.cs: Added file
- * DataRowViewTest2.cs: Added file
- * DataTableCollectionTest2.cs: Added file
- * DataTableTest2.cs: Added file
- * DataViewTest2.cs: Added file
- * ForeignKeyConstraintTest2.cs: Added file
- * UniqueConstraintTest2.cs: Added file
- 2005-07-12 Eyal Alalouf <[email protected]>
- * DataRelationCollectionTest2.cs: Added file
- 2005-07-12 Eyal Alalouf <[email protected]>
- * DataColumnTest2.cs: Added file
- 2005-07-08 Sureshkumar T <[email protected]>
- * DataTableLoadRowTest.cs: Added tests for event handling.
- PreserveChangesTest: Added few more tests.
- 2005-06-30 Eyal Alalouf <[email protected]>
- * DataColumnCollectionTest2.cs: Added file
- 2005-06-29 Ben Maurer <[email protected]>
- * DataTableTest.cs: Add Gonz's test from corlib that should be here.
- 2005-06-29 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : set [Category("InetAccess")]
- 2005-06-15 Sureshkumar T <[email protected]>
- * DataSetTest.cs: added a test case for DataSet changes cascading
- to child tables. test case idea from [email protected]
- (George Barbarosie) in bug #75226.
- 2005-06-14 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : quick build fix.
- 2005-06-14 Sureshkumar T <[email protected]>
- * DataSetTest.cs: Added test case for GetChanges method.
- 2005-06-10 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : TestSampleFileImportSimple() is not
- working and it takes so much time (downloading), so just disable it.
- 2005-06-02 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : testcase for bug #75121.
- 2005-05-29 Eyal Alaluf <[email protected]>
- * ConstraintCollectionTest2.cs - New file containing Mainsoft ConstraintCollection tests.
- 2005-05-25 Sureshkumar T <[email protected]>
- * DataTableLoadRowTest.cs: Added additional cases for
- AutoIncrementTest to gauge any side effect with auto
- incrementing in case of upsert.
- 2005-05-20 Sureshkumar T <[email protected]>
- * DataRowCollectionTest.cs: Added a test to check Rows.Add (values
- []) with null in the collection.
- 2005-05-11 Sureshkumar T <[email protected]>
- * DataTableTest.cs: revamped tests for ImportRow method. Checks
- for all rowstates and pk violation of importing a deleted record.
- 2005-05-05 Sureshkumar T <[email protected]>
- * DataTableReaderTest.cs: Added a test to check when deleting the
- first row.
- 2005-05-04 Sureshkumar T <[email protected]>
- * DataTableReaderTest.cs:
- - reader.close in finally in all test cases.
- - Added tests to check scenarios when the datasource is
- modified/deleted/added.
- - Added tests to check when the datatable is cleared.
- * DataTableTest.cs:
- - Added a test for DataTable. Should clear rows from indexes as
- well. Simplified table creation for ClearReset test.
- - Added a test to check whether Commit RowChanging & RowChanged
- event is fired.
- - ClearTest () : added case for checking whether TableCleared
- event is fired.
- 2005-04-29 Sureshkumar T <[email protected]>
- * DataTableReaderTest.cs: Added few more tests.
- 2005-04-27 Sureshkumar T <[email protected]>
- * DataTableReaderTest.cs: Added Tests for DataTableReader class.
- 2005-04-22 Sureshkumar T <[email protected]>
- * DataTableLoadRowTest.cs: Added. A test case for testing
- LoadDataRow method of DataTable. This tests for various
- possiblities of row state and loadoption.
- 2005-04-19 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : added more RowStateFilter test (bug #74650).
- 2005-04-17 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : added more test for Delete() based on bug #74631.
- 2005-02-25 Atsushi Enomoto <[email protected]>
- * DataColumnTest.cs : added testcase for setting negative value on
- DataColumn whose mapping is SimpleContent.
- 2005-02-15 Atsushi Enomoto <[email protected]>
- * DataSetAssertion.cs : don't exclude those attribute whose namespace
- URI is not empty from sort target.
- * DataSetTest.cs : removed GetNormalizedSchema() dependency from some
- tests (i.e. DataSet now emits more MS-closer schemas).
- * DataViewTest.cs : implemented test for RowFilter.
- 2005-02-04 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : WriteDifferentNamespaceSchema() is NotWorking.
- It is impossible to fix (see code comment).
- 2005-02-04 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Fixed strict type name under .NET 2.0.
- 2005-02-03 Sureshkumar T <[email protected]>
- * ForeignKeyConstraintTest.cs: TestCtor5: ad-hoc fixes for mono.
- ms.net does not allow fkc.Table. LAMESPEC.
- 2005-02-03 Atsushi Enomoto <[email protected]>
- * DataViewManagerTest.cs : (Ctor) okay, #7 is silly test.
- 2005-02-02 Sureshkumar T <[email protected]>
- * DataTableTest.cs: ClearReset (): added valid error messages.
- 2005-02-02 Atsushi Enomoto <[email protected]>
- * DataViewManagerTest.cs : new file.
- 2005-02-02 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : Enable ComplexEventSequence1().
- - Right now don't test ApplyDefaultSort event.
- - Also row order between identical values depends on implementation.
- 2005-02-02 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : added practical event handling tests (though
- NotWorking since it is still not complete).
- 2005-02-01 Atsushi Enomoto <[email protected]>
- * DataTableTest.cs : added RowChanging event test.
- * DataViewTest.cs : make sure to clear event args.
- 2005-01-31 Sureshkumar T <[email protected]>
- * DataRowTest.cs: Added case for SetparentRow: create
- DataRelations with createConstraints=false. part of the test case
- by Ankit Jain.
-
- 2005-01-28 Atsushi Enomoto <[email protected]>
- * DataRowViewTest.cs : added RowVersion1() test.
- 2005-01-28 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : Enabled TestFindRows(). Added more FindRows() tests.
- 2005-01-28 Atsushi Enomoto <[email protected]>
- * DataTableTest.cs : PrimaryKeyColumnChecksNonNull() is working now.
- 2005-01-28 Atsushi Enomoto <[email protected]>
- * DataTableTest.cs : added tests for primary key constraint check
- (not working right now).
- 2005-01-28 Atsushi Enomoto <[email protected]>
- * UniqueConstraintTest.cs : added DBNullAllowed().
- 2005-01-27 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : added test for ListChanged.
- * DataRowViewTest.cs : (ItemException) fixed test. It is now working.
- 2005-01-25 Atsushi Enomoto <[email protected]>
- * DataTableTest.cs : finally run-test-ondotnet passes (i.e.
- fixed incompatibility).
- 2005-01-25 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : With a tiny fix, removed NotDotNet.
- 2005-01-25 Atsushi Enomoto <[email protected]>
- * DataRowTest.cs : added DetachedRowItemException().
- * DataSetTest.cs : WriteXmlSchema7() is now NotWorking.
- 2005-01-25 Sureshkumar T <[email protected]>
- * DataTableTest.cs: added test case for checking ImportRow when
- the row state is detached. Test case by Ankit Jain.
- 2005-01-25 Atsushi Enomoto <[email protected]>
- * DataRowViewTest.cs : added IsEdit tests and Item tess (not working).
- 2005-01-24 Atsushi Enomoto <[email protected]>
- * DataRowViewTest.cs : added new file.
- 2005-01-24 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : test labels were ambiguous.
- * DataViewTest.cs : indentation was heavily broken.
- 2005-01-24 Atsushi Enomoto <[email protected]>
- * DataColumnTest.cs : Added SetMaxLength().
- 2005-01-24 Atsushi Enomoto <[email protected]>
- * store2.xsd, store3.xsd, store4.xsd : Added.
- * DataSetTest.cs :
- Disabled ReadWriteXmlSchema() and ReadWriteXmlSchemaIgnoreSchema()
- for now. See the details in the code.
- 2005-01-21 Atsushi Enomoto <[email protected]>
- * DataRowTest.cs : more test for Current -> Default, test for
- VersionNotFound, and test for InvalidConstraint on GetChildRows().
- Patch by Ankit Jain.
- 2005-01-21 Atsushi Enomoto <[email protected]>
- * DataRowTest.cs : Test if Default is used to check state of the row
- instead of Detached. Patch by Ankit Jain.
- 2005-01-21 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : added CloneCopy2().
- 2005-01-20 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : use more normalized schema comparison.
- 2005-01-20 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs,
- DataSetAssertionTest.cs : In GetNormalizedSchema(), use manual
- sorting using dom so that it can ignore XmlSerializer difference.
- Added some new assertion methods.
- 2005-01-19 Atsushi Enomoto <[email protected]>
- * DataRowTest.cs : no need to gather 3 individual tests as RowEditTest.
- Let's not output to Console.
- 2005-01-14 Atsushi Enomoto <[email protected]>
- * DataViewTest.cs : made AddNew_2() and FindRows() pass under .NET 1.1.
- FindRows() is still not implemented, so marked as [Ignore].
- 2005-01-14 Atsushi Enomoto <[email protected]>
- * ForeignKeyConstraintTest.cs : Fixed Ctor5() to pass under MS.NET 1.1.
- Design time ctor() needs more love.
- * DataRelationCollectionTest.cs,
- DataTableCollectionTest.cs : Made Remove() pass under MS.NET 1.1.
- When index is out of range, IndexOutOfRangeException is thrown.
- DataRelationCollectionTest.AddException1() was invalid.
- 2005-01-14 Atsushi Enomoto <[email protected]>
- * ConstraintCollectionTest.cs : Fixed run-test-ondotnet. MS.NET does
- not fill Table property even after EndInit().
- * DataRelationTest.cs : Fixed run-test-ondotnet. ExpectedException
- is missing.
- * TypedDataSetGeneratorTest.cs : fixed GenerateName() both for
- run-test-ondotnet and run-test.
- 2005-01-12 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : WriteXmlSchema2() and WriteXmlSchema3() didn't pass
- on run-test-ondotnet. Removed extraneous Console output.
- modified WriteXmlSchema4(),WriteXmlSchema5() and WriteXmlSchema6()
- to use xmlserializer-based comparison.
- Fixed SerializeDataSet() to use ordinal MS result (it's not simple
- to compare results unless we have another WriteXmlSchema()
- implementation.)
- 2005-01-12 Atsushi Enomoto <[email protected]>
- * DataSetAssertion.cs : forgot one required update for refreshed tests.
- 2005-01-12 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : added test for bug #58744.
- * DataSetReadXmlTest.cs : Added NameConflictDSAndTable().
- * DataSetTest.cs :
- Now use XmlSerializer based output, to avoid silly attribute order in
- OwnWriteXmlSchema(),WriteXmlSchema(),ReadWriteXmlSchemaIgnoreSchema(),
- ReadWriteXmlSchema() and WriteDifferentNamespaceSchema().
- Added SerializeDataSet2(),SerializeDataSet3(),DeserializeDataSet(),
- ReadWriteXml3(),WriteXmlSchema2(),WriteXmlSchema3(),WriteXmlSchema4(),
- WriteXmlSchema5(),WriteXmlSchema6(),WriteXmlSchema7(),
- WriteXmlExtendedProperties() and WriteXmlModeSchema().
- 2004-10-14 Umadevi S <[email protected]>
- * DataTableTest.cs : added testcase for subclass clone
- 2004-10-14 Umadevi S <[email protected]>
- * DataSetTest.cs : added testcase to check subclass clone
- 2004-10-12 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : now xs:schema contains xmlns="".
- 2004-09-24 Umadevi S <[email protected]>
- * DataRowTest.cs : Added a test for EnforceConstraints with relations defined.
- 2004-09-24 Sureshkumar T <[email protected]>
- * DataSetTest.cs (DataSetClearTest): Added a test for DataSet.Clear. This should not
- throw any exception and should override constraints.
- 2004-09-19 Sureshkumar T <[email protected]>
- * DataSetTest.cs : Added a test for Deserialization of dataset : DeserializeModifiedDataSet
- 2004-08-24 Nick Drochak <[email protected]>
- * DataViewTest.cs : Fixed compile with csc
- 2004-08-18 Umadevi S <[email protected]>
- * DataViewTest.cs : Revamped to get Event handling tested
- Thanks to Punit Todi for his contribution towards the test cases
- 2004-06-23 Umadevi S <[email protected]>
- * DataTableTest.cs :Corrected Testcases to .net 1.1 specifications
- 2004-06-23 Umadevi S <[email protected]>
- * DataRelationTest.cs : Corrected AddRelation testcases
- 2004-06-23 Umadevi S <[email protected]>
- * ConstraintCollectionTest.cs : Corrected AddRange testcases
- 2004-06-20 Atsushi Enomoto <[email protected]>
- * DataTableCollectionTest.cs : Added test for DataSet and Namespace
- adjustment.
- 2004-06-18 Atsushi Enomoto <[email protected]>
- * TypedDataSetGeneratorTest.cs : [TestFixture] was missing.
- 2004-06-15 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Added regression for #53959.
- 2004-05-31 Atsushi Enomoto <[email protected]>
- * DataTableTest.cs : Added test for serialization by Boris Kirzner.
- * DataSetInferXmlSchemaTest.cs : Added test for schema element skip
- by Boris Kirzner.
- 2004-05-27 Nick Drochak <[email protected]>
- * DataRelationCollectionTest.cs: Fixed build when using csc.
- 2004-05-27 Umadevi S <[email protected]>
- * Corrected small typos in DataTableCollectionTest & DataRelationCollectionTest
- 2004-05-26 Umadevi S <[email protected]>
- * Added files DataTableCollectionTest and DataRelationCollectionTest
- 2004-05-19 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Fixed ReadWriteXmlSchema() that miscounted
- constraints and parent keys.
- 2004-05-18 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Converted CRLF to LF for line ending comparison.
- (and added copyright line.)
- 2004-05-17 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Added WriteXmlEncodedXml() test.
- 2004-05-17 Atsushi Enomoto <[email protected]>
- * DataSetAssertion.cs : Enabled "Ordinal" check again, unless the test
- value is -1.
- * DataSetInferXmlSchemaTest.cs,
- DataSetReadXmlSchemaTest.cs : Enabled Ordinal check again, as long
- as working. Added IgnoredNamespaces() to inferxmlschema test.
- 2004-05-14 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : Added test014.xsd tes (contains two
- simple repeatable elements).
- 2004-05-14 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs,
- DataSetReadXmlTest.cs,
- DataSetReadXmlSchemaTest.cs,
- DataSetInferXmlSchemaTest.cs,
- DataSetAssertion.cs : AssertDataTable() now checks Constraint count
- and ParentKey length.
- 2004-05-14 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : Added tests for test012.xsd (repeatable
- simple element) and test013.xsd (reference to global element;
- currently failing).
- 2004-05-11 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : Added WriteXmlToStream().
- 2004-05-11 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlSchemaTest.cs : SingleElementTreatmentDifference() was
- incorrect. DataSet element is assumed only if there is only one
- global element.
- * DataSetReadXmlTest.cs : Added error-reported test case.
- * DataSetInferXmlSchemaTest.cs : Modified more tests not to compare
- Ordinal for non-specified columns (that shouldn't be significant).
- 2004-05-06 Atsushi Enomoto <[email protected]>
- * ConstraintCollectionTest.cs : Table name should not be the same as
- for the purpose of this test.
- * DataSetReadXmlSchemaTest.cs : Added more tests based on schema files.
- * DataSetTest.cs : Reordered attributes to pass test in
- WriteDifferentNamespaceSchema().
- 2004-05-05 Atsushi Enomoto <[email protected]>
- * ForeignKeyConstraintTest.cs : Made tests pass under MS.NET 1.1.
- Don't catch every kind of exception. That does nothing but keep us
- away from the exact error location.
- * DataSetTest.cs : Make sure that we read schema correctly, before
- testing WriteXmlSchema.
- 2004-05-05 Atsushi Enomoto <[email protected]>
- * DataColumnCollectionTest.cs : catch only specific exception. Don't
- rely on localizable error message.
- * DataSetTest.cs : Attribute orders should not be significant, so
- just hacked to match current implementation's order.
- Added WriteNestedTableXml().
- 2004-05-05 Atsushi Enomoto <[email protected]>
- * ConstraintCollectionTest.cs : uncommented some tests that should be
- implemented until mono 1.0.
- * ConstraintTest.cs : use ExpectedException. Don't expect localizable
- error message.
- * DataColumnTest.cs,
- DataRelationTest.cs,
- DataRowCollectionTest.cs : catch only specific type exception.
- Don't rely on (test) localizable messages.
- * DataSetAssertion.cs : We shouldn't expect exact column ordinals
- when infering/reading the structures from documents/schemas.
- 2004-04-29 Atsushi Enomoto <[email protected]>
- * DataRowTest.cs : Added a test for auto increment column and item
- integrity (it caused index out of range exception).
- 2004-04-27 Atsushi Enomoto <[email protected]>
- * ConstraintCollectionTest.cs,
- DataSetTest.cs,
- DataTableTest.cs,
- ForeignKeyConstraintTest.cs : Fixes for incorrect NET_1_0 use.
- * DataRowCollectionTest.cs : just check exception type. Don't check
- localizable error message.
- * DataSetAssertion.cs : Removed AssertDataSet() with just 4 argument.
- Added relation count parameter for AssertDataTable().
- Added Nested check parameter for AssertDataRelation().
- * DataSetInferXmlSchemaTest.cs,
- DataSetReadXmlTest.cs,
- DataSetReadXmlSchemaTest.cs :
- Applied new AssertDataTable(). Added more check on
- DataSetReadXmlSchemaTest.SingleElementTreatmentDifference ().
- 2004-04-22 Atsushi Enomoto <[email protected]>
- All fixes are to make them pass under MS.NET 1.1.
- * ConstraintCollectionTest.cs : Fixed to pass under MS.NET 1.1.
- * DataRelationTest.cs : Creation4() never works.
- * DataSetInferXmlSchemaTest.cs :
- Fixed xml9 test (relation count).
- Some mappings were incorrectly specified int.
- ConflictColumnTable() test incorrectly tested different columns.
- Fixed exception type on ConflictExistingPrimaryKey().
- * DataSetReadXmlSchemaTest.cs :
- Use fixed current culture.
- Fixed exceptoin type on NestedReferenceNotAllowed().
- * DataSetReadXmlTest.cs :
- InferSchema mode is said as to load rows.
- * DataSetTest.cs :
- SqlGuid test depends on the runtime version.
- In WriteDifferentNamespaceSchema(), we're going to set the same
- order for namespaces (just for ease of tests).
- Fixed many bugs on SerializeDataSet() test.
- * DataTableTest.cs :
- Set culture only on NET_1_0. Culture difference causes exception
- under .NET 1.1.
- Don't depend on error message string (consider localization).
- Under .NET 1.1, constraints looks also vanishes on table's Clear().
- * ForeignKeyConstraintTest.cs :
- Ignore TestCtor5(). That does not work under .NET 1.1.
- Fixed some exception type differences.
- 2004-04-22 Atsushi Enomoto <[email protected]>
- * DataSetInferXmlSchemaTest.cs : Added ConflictExistingPrimaryKey().
- * DataSetReadXmlTest.cs : Added IgnoreSchemaShouldFillData().
- * DataSetTest.cs : Added IgnoreColumnEmptyNamespace() and
- SerializeDataSet().
- 2004-04-20 Atsushi Enomoto <[email protected]>
- * DataSetInferXmlSchema.cs : added more 16 patterns.
- (mostly fails as yet).
- * DataSetReadXmlTest.cs : Reverted yesterday's incorrect part.
- As for XmlReadMode = Auto, data row should be read.
- * DataSetTest.cs : Added Namespace and Prefix tests.
- Added WriteDifferentNamespaceSchema().
- hmm... WriteXmlSchema() also needs more love :(
- 2004-04-19 Atsushi Enomoto <[email protected]>
- * Added DataSetInferXmlSchemaTest.cs.
- * DataSetReadXmlTest.cs : Fixed test bogus. When ReadMode is
- InferSchema, it should not load any data rows.
- * DataSetAssertion.cs : Added AssertDataSet() overroad that takes
- relation count.
- 2004-04-19 Atsushi Enomoto <[email protected]>
- * Added missing ChangeLog entry.
- * ConstraintCollectionTest.cs :
- Ignore some tests that should fail (They also fail under MS.NET).
- * DataSetReadXmlSchemaTest.cs :
- - Added SingleElementTreatmentDifference() and PrefixedTargetNS().
- - Modified UnusedComplexTypesInored() to make sure DataSetName is set.
- - Renamed DataSetElementCannotBeReferenced() to
- NestedReferenceNotAllowed().
- - Modified ReadElemAttrPattern() to LocaleOnRootWithoutIsDataSet()
- to test msdata:Locale.
- * DataSetTest.cs : Due to mcs bug #57200, csc does not allow
- System.Type.GetType(), so modified them all.
- 2004-04-16 Atsushi Enomoto <[email protected]>
- * DataSetAssertion.cs : Added AssertDataColumn().
- * DataSetReadXmlSchemaTest.cs : Added more strange cases.
- 2004-04-15 Umadevi S ([email protected])
- * ForeignKeyConstraintTest - constructor testing,
- * DataSet - test for Clone and Copy methods.
- 2004-04-15 Atsushi Enomoto <[email protected]>
- * Added DataSetAssertion.cs and DataSetReadXmlSchema.cs.
- * DataSetReadXmlTest.cs : separate assertion methods into
- DataSetAssertion.cs. Added label argument to AssertDataTable.
- 2004-04-15 Atsushi Enomoto <[email protected]>
- * DataSetReadXmlTest.cs : Tests were incorrect. They should be done
- against new dataset. So just added another sequential read tests.
- 2004-04-14 Atsushi Enomoto <[email protected]>
- * Added DataSetReadXmlTest.cs. (specific to ReadXml() in DataSet).
- 2004-04-12 Atsushi Enomoto <[email protected]>
- * DataSetTest.cs : More path fix. Don't expect End of Line = "\n".
- It might be "\r\n" or else.
- 2004-04-09 Atsushi Enomoto <[email protected]>
- * DataColumnTest.cs,
- DataRowTest.cs,
- DataTableTest.cs : build fix: csc does not allow
- System.Type inside namespace MonoTests.System.Data.
- * DataSetTest.cs : path fix.
- * DataRelationTest.cs : path fix. Don't test error message: It should
- vary by message translations. Split tests and use ExpectedException.
- 2004-03-31 Juraj Skripsky <[email protected]>
- * DataColumnTest.cs : fixes here and there,
- make all tests pass on ms.net.
- 2004-03-29 Juraj Skripsky <[email protected]>
- * DataTableTest.cs : add test case for bug #55503,
- comment out meaningless test cases.
- 2004-01-21 Atsushi Enomoto <[email protected]>
- * Added TypedDataSetGeneratorTest.cs.
- 2003-12-18 Jackson Harper <[email protected]>
- * DataViewTest.cs: Add some tests for new methods.
-
- 2003-05-26 Ben Maurer <[email protected]>
- * DataViewTest.cs: Added new test from
- Patrick Kalkman
- 2003-05-13 Martin Willemoes Hansen <[email protected]>
- * All tests inherits from Assertion, and
- Assertion. prefixes removed
- 2003-04-05 Ville Palo <[email protected]>
- * DataTableTest.cs: little fix.
-
- 2003-03-27 Ville Palo <[email protected]>
- * UniqueConstraintTest.cs: some minor fixes.
-
- 2003-03-26 Ville Palo <[email protected]>
- * DataRowCollectionTest.cs: Tests for AutoIncrement
-
- 2003-03-25 Ville Palo <[email protected]>
- * DataTableTest.cs: Added test for PrimaryKey-property
-
- 2003-03-16 Ville Palo <[email protected]>
- * DataColumnCollectionTest.cs: little fix.
- 2003-03-16 Ville Palo <[email protected]>
- * DataColumnCollectionTest.cs: Typos
-
- 2003-03-16 Ville Palo <[email protected]>
- * DataSetTest.cs: Fixed line-ending problems
-
- 2003-03-06 Ville Palo <[email protected]>
- * DataTableTest.cs: More tests for Select ()
-
- 2003-02-28 Ville Palo <[email protected]>
- * DataColumnCollectionTest.cs: Added more tests.
- * DataRowCollectionTest.cs: Added more tests.
-
- 2003-04-02 Ville Palo <[email protected]>
- * DataColumnTest.cs: Added tests for Expression property
-
- 2003-03-02 Ville Palo <[email protected]>
- * DataTableTest.cs: More tests for Select
-
- 2003-31-01 Ville Palo <[email protected]>
- * DataTableTest.cs: Added more tests for Select (string) -method
-
- 2003-27-01 Ville Palo <[email protected]>
- * DataRelationTest.cs: Added more tests
-
- 2003-27-01 Ville Palo <[email protected]>
- * DataTableTest.cs: Added test for DataTable.Select ()
-
- 2003-24-01 Ville Palo <[email protected]>
- * UniqueConstraint.cs: More tests
-
- 2003-23-01 Ville Palo <[email protected]>
- * ForeignKeyConstraint.cs: More tests
-
- 2003-22-01 Ville Palo <[email protected]>
- * DataRelationTest.cs: More tests and little clean up.
-
- 2003-14-01 Ville Palo <[email protected]>
- * DataRelationTest.cs: Added more tests
-
- 2003-13-01 Ville Palo <[email protected]>
- * DataRelationTest.cs: Test class for DataRelation
-
- 2002-12-26 Ville Palo <[email protected]>
- * own_schema.xsd: XmlSchema for testing ReadXmlSchema() -method
- * DataSetTest.cs: Added more Xml-tests.
-
- 2002-12-17 Ville Palo <[email protected]>
- * region.xml:
- * store.xsd: new xmldoment and xmlschema for testing DataSet
- * DataSetTest.cs: Added some Xml-tests.
- * AllTests.cs: Added DataSetTest
-
- 2002-10-23 Nick Drochak <[email protected]>
- * ConstraintCollectionTest.cs (SetUp): Clear the constraints before
- each test.
- * ConstraintTest.cs: same
- * DataColumnTest.cs: Get exceptions straight. Some are thrown and some
- aren't
- 2002-10-22 Nick Drochak <[email protected]>
- * DataColumnTest.cs: Remove compiler warnings and use caught exception
- to report useful info.
|