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
|
2006-12-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerTests.cs : added tests for XmlArrayAttribute support.
2006-11-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerTests.cs : added test for hexBinary.
2006-11-22 Atsushi Enomoto <atsushi@ximian.com>
* XmlReflectionImporterTests.cs : added test for class that contains
nullable value type field whose XmlElementAttribute IsNullable.
2006-11-20 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerTests.cs : added test for nullable type.
2006-11-17 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerTests.cs : test for basic generic type support with
code generation.
2006-11-14 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerImplementationTests.cs :
another custom implementation case.
2006-11-10 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchemaExporterTests.cs :
fixed almost all test cases which expected totally wrong schemas.
Schema elements are all nillable unless it is of value type.
2006-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchemaImporterTests.cs :
added DefaultTypeTopLevelElementImportsAllComplexTypes().
2006-11-09 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchemaImporterTests.cs :
added ImportComplexDerivationByExtension().
2006-11-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchemaImporterTests.cs :
added AnyTypeTopLevelElementImportsAllComplexTypes().
2006-11-08 Atsushi Enomoto <atsushi@ximian.com>
* XmlSchemaImporterTests.cs : added ImportTypeMapping() test for
nonexistent name.
2006-11-02 Atsushi Enomoto <atsushi@ximian.com>
* CodeIdentifiersTests.cs : new test.
2006-11-01 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerImplementationTests.cs : new testfixture.
2006-10-10 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Added a few tests. Fixed coding style.
2006-10-08 Gert Driesen <drieseng@users.sourceforge.net>
* DeserializeTest.cs: Added several tests.
* XmlSerializerTestClasses.cs: Added test classes for encoded SOAP.
* XmlSerializerTests.cs: Added new tests and fixed existing test.
* XmlReflectionImporterTests.cs: Added test for invalid default
values.
* SoapReflectionImporterTests.cs: Fixed numbering of tests.
2006-10-01 Gert Driesen <drieseng@users.sourceforge.net>
* SoapReflectionImporterTests.cs: Added tests for bug #78206.
2006-05-30 Atsushi Enomoto <atsushi@ximian.com>
* XmlSerializerTests.cs : added tailored version of bug #78536 test.
2006-05-15 Gert Driesen <drieseng@users.sourceforge.net>
* XmlCodeExporterTests.cs: Added tests for arrays. Fixed usage of
XmlRootAttribute in tests.
2006-04-26 Gert Driesen <drieseng@users.sourceforge.net>
* SoapSchemaExporterTests.cs: Sync expected results with changes to
test classes.
* XmlCodeExporterTests.cs: Same.
2006-04-26 Gert Driesen <drieseng@users.sourceforge.net>
* DeserializeTests.cs: Improved TestDeserialize_Enum test for
bug #78204.
2006-04-26 Gert Driesen <drieseng@users.sourceforge.net>
* SoapAttributesTests.cs: Added tests for bug #78205.
* XmlSerializerTestClasses.cs: Added test classes and improved existing
classes for usage in upcoming bug reports.
2006-04-24 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaExporterTests.cs: Enabled tests which failed due to bug
#78145.
2006-04-21 Gert Driesen <drieseng@users.sourceforge.net>
* XmlCodeExporterTests.cs: Enabled tests for XmlCodeExporter.
* XmlSchemaImporterTests.cs: Fixed EnumSimpleContent test to pass
on MS.NET 2.0.
2006-04-20 Gert Driesen <drieseng@users.sourceforge.net>
* XmlCodeExporterTests.cs: Added tests for XmlCodeExporter (currently
marked NotWorking).
2006-03-25 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaImporterTests.cs: Enabled tests for bug #77907.
2006-03-25 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaImporterTests.cs: Added NotWorking tests as preparation
for XmlReflectionImporter and SoapReflectionImporter fixes. Reordered
tests.
2006-03-22 Gert Driesen <drieseng@users.sourceforge.net>
* XmlReflectionImporterTests.cs: Added ImportTypeMapping tests for
void and null type argument. Improved WrongChoices test to make sure
the exception(s) we throw match those of MSFT. Added test for bug
#77591.
2006-03-10 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaExporterTests.cs: Enabled tests for bug #77111.
.
2006-03-10 Gert Driesen <drieseng@users.sourceforge.net>
* DeserializeTests.cs: Enabled tests for bug #77530.
* XmlSerializerTests.cs: Enabled tests for bug #77530.
2006-03-07 Lluis Sanchez Gual <lluis@novell.com>
* System.Xml.Serialization/XmlSerializerTestClasses.cs:
* System.Xml.Serialization/XmlSerializerTests.cs: Added tests
for XmlSchemaForm.
2006-02-16 Gert Driesen <drieseng@users.sourceforge.net>
* XmlReflectionImporter.cs: Enabled few tests for bug #77531.
* SoapReflectionImporter.cs: Enabled few tests for bug #77531.
2006-02-16 Lluis Sanchez Gual <lluis@novell.com>
* XmlSchemaImporterTests.cs: Added test for bug #76848.
2006-02-11 Gert Driesen <drieseng@users.sourceforge.net>
* XmlRootAttributeTests.cs: Set eol-style to CRLF.
* SoapTypeAttributeTests.cs: Same.
* XmlIncludeAttributeTests.cs: Same.
* XmlTextAttributeTests.cs: Same.
* XmlSerializerTests.cs: Same.
* SoapIncludeAttributeTests.cs: Same.
* XmlSerializationWriterTests.cs: Same.
* XmlElementAttributeTests.cs: Same.
* ComplexDataStructure.cs: Same.
* DeserializerTests.cs: Same.
* SoapElementAttributeTests.cs: Same.
* XmlChoiceIdentifierAttributeTests.cs: Same.
* XmlArrayItemAttributeTests.cs: Same.
* XmlAnyElementAttributeTests.cs: Same.
* XmlAttributesTests.cs: Same.
* XmlAttributeAttributeTests.cs: Same.
* XmlEnumAttributeTests.cs: Same.
* SoapAttributeAttributeTests.cs: Same.
* SoapEnumAttributeTests.cs: Same.
* SoapSchemaMemberTests.cs: Same.
* XmlArrayAttributeTests.cs: Same.
* XmlSerializerTestClasses.cs: Same.
* XmlSchemaImporterTests.cs: Set eol-style to native.
2006-02-11 Gert Driesen <drieseng@users.sourceforge.net>
* XmlReflectionImporterTests.cs: Added test for IDictionary import.
Set eol style to CRLF.
* SoapReflectionImporterTests.cs: Added test for IDictionary import.
2006-02-11 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTestClasses.cs: Fixed line endings (sigh).
2006-02-10 Gert Driesen <drieseng@users.sourceforge.net>
* DeserializeTests.cs: Added tests for deserialization of enums, and
primitive types container.
* XmlSerializerTests.cs: Numbered some tests.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Fixed build after failed merge.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Added test for bug #77501. Added tests for
XML and encoded serialization of enums.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializationWriterTests.cs: Added Reset overload that takes
Formatting. Added XmlNode[] tests for bug #77512, enabled tests for
bug #77512.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* SoapReflectionImporterTests.cs: Marked test NotDotNet.
2006-02-09 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
for bug #77447.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Added constants for usage in new tests.
Added methods for encoded serialization. Fixed line endings.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTestClasses.cs: Added test classes.
2006-02-09 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializationWriterTests.cs: Use Assert instead of deprecated
Assertion class. Added tests for FromEnum, WriteXsiType,
WriteTypedPrimitive and WritePotentiallyReferencingElement. Changed
accessibility of Reset and Content on XmlSerializationWriterTester
and added public Execute methods for WritePotentiallyReferencingElement
and WriteTypedPrimitive, to allow this class to be useful for tests
that have effect on the prefix for other tests.
* XmlSerializationReaderTests.cs: Added tests for ToEnum.
2006-02-08 Gert Driesen <drieseng@users.sourceforge.net>
* XmlTypeAttributeTests.cs: Set eol-style to native.
2006-02-06 Gert Driesen <drieseng@users.sourceforge.net>
* DeserializeTests.cs: Use Assert instead of deprecated Assertion.
Renumbered tests. Fixed line endings.
2006-02-05 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: No longer derive from Assertion, fixed some
tests that were catching NUnit's AssertionException too.
2006-02-04 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaExporterTests.cs: Reworked tests that fail on Mono
due to bug #77117 to pass on Mono (until that bug is fixed) and
mark these tests NotDotNet.
2006-01-23 Gert Driesen <drieseng@users.sourceforge.net>
* XmlReflectionImporterTests.cs: Marked tests NotWorking until fixes
have landed in svn.
* SoapReflectionImporterTests.cs: Added numerous tests.
* XmlSchemaImporterTests.cs: Added numerous tests.
* XmlSchemaExporterTests.cs: Added numerous tests.
* SoapSchemaExporterTests.cs: Added numerous tests.
* XmlSerializerTestClasses.cs: Added test classes for
XmlSchemaExporter. Fixed line endings (to CRLF).
2006-01-07 Gert Driesen <drieseng@users.souceforge.net>
* XmlReflectionImporterTests.cs: Added numerous tests. No longer
derive from Assertion.
2005-12-29 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSchemaExporterTests.cs: Added tests for exporting structs, and
arrays. Added tests for bug #77117. Refactored some existing tests.
2005-12-28 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Added serialization test for XmlSchema.
* XmlSchemaExporterTests.cs: Added tests for class, IXmlSerializable
and primitives.
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* XmlSerializerTests.cs: Number individual tests.
2005-12-27 Gert Driesen <drieseng@users.sourceforge.net>
* XmlAttributesTests.cs: No longer derive from Assertion, number
individual tests.
2005-12-05 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTestClasses.cs:
* DeserializeTests.cs: Added tests for bug #76808 and related behavior.
2005-12-01 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTestClasses.cs:
* XmlSerializerTests.cs: Added tests for bug #76860.
2005-11-24 Vladimir Krasnov <vladimirk@mainsoft.com>
* XmlSerializerTestClasses.cs: added two enum types, without
0-value
* XmlSerializerTests.cs: added tests for serialization enum's
default value
2005-09-26 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs, DeserializeTests.cs,
XmlSerializerTestClasses.cs: Added tests for serialization of
arrays of choice values.
2005-09-21 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs, Added test for bug #76049.
2005-09-21 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
for bug #75986.
2005-08-24 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs: Added test for bug #75855.
* DeserializeTests.cs: New test.
* XmlSerializerTestClasses.cs: New test classes.
2005-07-31 Gert Driesen <drieseng@users.sourceforge.net>
* ComplexDataStructure.cs: Fixed test due to change in default value
of XmlArrayItemAttribute.IsNullable.
* SoapAttributeAttributeTests.cs: Added tests for default values.
* SoapElementAttributeTests.cs: Added tests for default values.
* SoapEnumAttributeTests.cs: Added tests for default values.
* SoapIncludeAttributeTests.cs: Added tests for default values.
* SoapSchemaMemberTests.cs: Added tests for default values.
* SoapTypeAttributeTests.cs: Added tests for default values.
* XmlAnyElementAttributeTests.cs: Added tests for default values.
* XmlArrayAttributeTests.cs: Added tests for default values.
* XmlArrayItemAttributeTests.cs: Added tests for default values.
* XmlAttributeAttributeTests.cs: Added tests for default values.
* XmlChoiceIdentifierAttributeTests.cs: Added tests for default
values.
* XmlElementAttributeTests.cs: Added tests for default values.
* XmlEnumAttributeTests.cs: Added tests for default values.
* XmlIncludeAttributeTests.cs: Added tests for default values.
* XmlRootAttributeTests.cs: Added tests for default values.
* XmlTextAttributeTests.cs: Added tests for default values.
* XmlTypeAttributeTests.cs: Added tests for default values.
2005-06-17 Raja R Harinath <rharinath@novell.com>
* XmlSerializerTests.cs (TestSerializeDateTime): Avoid rounding
errors while printing timezone offset (off.TotalHours == 5.5 gets
printed as 6). Fix sign of timezone.
2005-04-26 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs:
* DeserializeTests.cs:
* XmlSerializerTestClasses.cs: Added tests for readonly properties and
elements with spaces on them.
2005-03-30 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs:
* XmlReflectionImporterTests.cs:
* DeserializeTests.cs:
* XmlSerializerTestClasses.cs: Added tests for serialization of choices.
2005-03-29 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTests.cs:
* DeserializeTests.cs:
* XmlSerializerTestClasses.cs: Added some tests for xml node serialization.
2005-02-28 Atsushi Enomoto <atsushi@ximian.com>
* XmlReflectionImporterTests.cs : set NotWorking for trivial empty
string comparison.
2005-02-10 Nick Drochak <ndrochak@ieee.org>
* DeserializeTests.cs: Ignore new test on MS.NET, since it fails there.
2005-02-07 Lluis Sanchez Gual <lluis@novell.com>
* DeserializeTests.cs: Added test case for bug #72265.
2005-01-30 Nick Drochak <ndrochak@ieee.org>
* ComplexDataStructure.cs:
* DeserializationTests.cs: Ignore failures on .NET
2004-09-02 Lluis Sanchez Gual <lluis@novell.com>
* XmlSerializerTestClasses.cs: Added some test classes.
* DeserializeTests.cs: Added tests for bug #61464.
2004-03-24 Lluis Sanchez Gual <lluis@ximian.com>
* XmlSerializerTests.cs: Added some identifiers for AssertEquals.
Minor fixes in Infoset method.
* ComplexDataStructure.cs: New set of tests for testing complex object
serialization.
2004-03-13 David Sheldon <dave-mono@earth.li>
* XmlReflectionImporterTests.cs: Switched the AssertEquals around
the other way, so that the expecteed value was the first parameter.
This makes the error messages you get out of it better.
2004-03-12 Lluis Sanchez Gual <lluis@ximian.com>
* DeserializeTests.cs: Added test for empty enum deserialization (bug #55509).
* XmlAttributesTests.cs, XmlReflectionImporterTests.cs,
XmlSerializationWriterTests.cs, XmlSerializerTests.cs:
Simplified namespace hierarchy.
* XmlSerializerTestClasses.cs: Added more test classes.
2003-12-18 Lluis Sanchez Gual <lluis@ximian.com>
* DeserializeTests.cs, XmlAttributesTests.cs: Changed namespace.
* XmlSerializationWriterTests.cs, XmlSerializerTests.cs: Make xml compares
independent from the text format.
2003-05-20 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added DeserializeTests.cs and XmlAttributesTest.cs
2003-05-18 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlSerializerTests.cs : fixed some AssertEquals() argument orders.
and replaced some Assert() with AssertEquals().
Applied USE_VERSION_1_1 to TestConstructor().
2003-05-16 Dick Porter <dick@ximian.com>
* XmlSerializerTests.cs: Test what happens when nulls are passed
to the constructor
2003-05-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* XmlSerializerTests.cs : fixed some argument orders and fixed
timezone dependent part of TestSerializeDateTime().
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
* Tests inherits from Assertion and Assertion. prefixes removed
2003-05-10 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlSerializationWriterTests.cs. (by Erik)
2003-04-25 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added XmlReflectionImporterTests.cs. (by Erik)
2003-04-12 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
* added this file as a new entry.
See ../ChangeLog to find former ChangeLog entries.
* added XmlSerializerTests.cs and XmlSerializerTestClasses.cs
(by Erik Lebel)
|