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
|
2009-07-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
* SortedListTest.cs: new tests by Kevin Fitzgerald.
2009-06-30 Zoltan Varga <vargaz@gmail.com>
* ReadOnlyCollectionBaseTest.cs NewArrayListTest.cs: Convert all tests
to new-style nunit classes/methods.
2009-06-26 Robert Jordan <robertj@gmx.net>
* BitArrayTest.cs: Upgrade to new NUnit style. Enable
16 tests that were disabled after the NUnit 2.4 update.
2009-06-24 Robert Jordan <robertj@gmx.net>
* ArrayListTest.cs, CollectionBaseTest.cs, DictionaryEntryTest.cs,
HashtableTest.cs: Convert all tests to new-style nunit methods.
* QueueTest.cs: likewise. Conversion revealed 25 test that were
disabled after the NUnit 2.4 update.
* StackTest.cs: likewise. Conversion revealed 24 test that were
disabled after the NUnit 2.4 update.
2008-08-31 Zoltan Varga <vargaz@gmail.com>
* BitArrayTest.cs: Add a test for #421803.
2008-05-08 Robert Jordan <robertj@gmx.net>
* DictionaryEntryTest.cs: Add tests for key's argument validation.
2008-03-24 Gert Driesen <drieseng@users.sourceforge.net>
* DictionaryBaseTest.cs: Improved existing tests, and use Assert class
instead of deriving from deprecated Assertion class. Code formatting.
2008-03-21 Sebastien Pouliot <sebastien@ximian.com>
* DictionaryBaseTest.cs: Add test case to see when and how OnGet
is being called.
2007-11-06 Jb Evain <jbevain@novell.com>
* HashtableTest.cs: Add test case for #324761.
2007-11-05 Sebastien Pouliot <sebastien@ximian.com>
* QueueTest.cs: Test cases for #321657. Based on the test case
supplied by Benjamin Lutz.
2007-10-27 Gert Driesen <drieseng@users.sourceforge.net>
* SortedListTest.cs: Fixed deserialization test to pass on MS.
2007-10-23 Gert Driesen <drieseng@users.sourceforge.net>
* SortedListTest.cs: No longer derive from deprecated Assertion class.
Added serialization tests, and a (NotWorking) deserialization test.
2007-07-05 Gert Driesen <drieseng@users.sourceforge.net>
* CaseInsensitiveHashCodeProviderTest.cs: Reworked test for Default
instance to pass on both Mono and MS. Added separate tests that
verify the specific Mono and MS behavior.
2007-07-05 Gert Driesen <drieseng@users.sourceforge.net>
* CaseInsensitiveHashCodeProviderTest.cs: Improved test for
Default property to show the a new intance is constructed. Added test
for DefaultInvariant. Improved serialization tests. Added ctor test
for null CultureInfo. Code formatting.
2007-04-19 Gert Driesen <drieseng@users.sourceforge.net>
* ArrayListTest.cs: Code formatting (indenting, spaces to tabs). Added
tests for bugs fixed in .NET 2.0.
2007-02-13 Boris Kirzner <borisk@mainsoft.com>
* CaseInsensitiveHashCodeProviderTest.cs, HashtableTest.cs:
test ifdefs for TARGET_JVM.
2006-11-28 Gert Driesen <drieseng@users.sourceforge.net>
* CaseInsensitiveComparerTest.cs: Added tests for bug #80082 and bug
#80076. Improved existing tests.
2006-08-08 Duncan Mak <duncan@novell.com>
* ReadOnlyCollectionBaseTest.cs (TestZeroCountOnNew): Add test for
overriding Count in NET_2_0 for #79033.
2006-04-25 Atsushi Enomoto <atsushi@ximian.com>
* QueueTest.cs, SortedListTest.cs : many capacity-related tests are
written under improper assumption. As a result they don't pass when
we run make PROFILE=net_2_0 run-test-ondotnet, so got rid of them.
2006-01-04 Sebastien Pouliot <sebastien@ximian.com>
* HashtableTest.cs: Added test case to check if all subclasses are
serializable.
2005-12-19 Sebastien Pouliot <sebastien@ximian.com>
* ArrayListTest.cs: Added test cases for a binary search with an empty
list (bug #77030). Fixed other test cases so they execute without
failures under MS 2.0.
2005-12-07 Sebastien Pouliot <sebastien@ximian.com>
* SortedTestList.cs: Added more test for the constructor accepting an
IComparer and to avoid regression of bug #76750.
2005-12-06 Sebastien Pouliot <sebastien@ximian.com>
* CaseInsensitiveHashCodeProviderTest: Added test cases for the
default ctor, roudtripping serialization and deserializing data
generated on MS 1.1 and 2.0.
2005-12-05 Sebastien Pouliot <sebastien@ximian.com>
* ComparerTest.cs: Removed "NotWorking" from "Invariant" test case
(it's now working). Added new test cases for ISerializable (added in
SP1 and present in 2.0) and completed coverage with tests for ctor.
2005-09-01 Atsushi Enomoto <atsushi@ximian.com>
* HashtableTest.cs : testcase for #75790.
2005-09-01 Atsushi Enomoto <atsushi@ximian.com>
* SortedListTest.cs : testcase for #59694.
2005-07-19 Ben Maurer <bmaurer@ximian.com>
* ArrayListTest.cs: The patch below was not committed with the
same text as the patch on the bug. There was an s/1/3. Doing the
patch as specified on the bug makes buildbot work and the test
work on msft
2005-07-17 Florian Gross <flgr@ccan.de>
* ArrayListTest.cs: Test for #75545.
2005-06-23 Ben Maurer <bmaurer@ximian.com>
* QueueTest.cs, StackTest.cs: Test for #75369.
2005-05-26 Ben Maurer <bmaurer@ximian.com>
* QueueTest.cs: New test.
2005-05-09 Atsushi Enomoto <atsushi@ximian.com>
* StackTest.cs : test for CopyTo() on an empty stack.
2005-01-05 Nick Drochak <ndrochak@ieee.org>
* ComparerTest.cs: Modernize and fix line endings. Test is failing with
mono, see if this change has any effect.
2004-12-16 Lluis Sanchez Gual <lluis@novell.com>
* HashtableTest.cs: Added test for bug #70570.
2004-08-24 Nick Drochak <ndrochak@ieee.org>
* ComparerTest.cs: On MS.NET 1.1 Compare("a", "A") returns < 0.
2004-07-28 Dick Porter <dick@ximian.com>
* ComparerTest.cs: Test for invariant compares (bug 61458.)
2004-06-14 Sebastien Pouliot <sebastien@ximian.com>
* HashtableTest.cs: Added new case to CopyTo(Array,int) an empty
hashtable.
* SortedListTest.cs: Un-ignored TestCapacity4 test case as it now
works correctly under Mono.
2004-06-01 Sebastien Pouliot <sebastien@ximian.com>
* SortedListTest.cs: Added new test when initial capacity is set to 0
(so it never returns to default, 16, when Capacity is set to 0) unless
Clear is called. Cleaned up unused SetUp/TearDown.
2004-05-31 Sebastien Pouliot <sebastien@ximian.com>
* ArrayListTest.cs: Added new test for null in BinarySearch.
* HashtableTest.cs: Added null checking fro GetObjectData.
2004-05-27 Sebastien Pouliot <sebastien@ximian.com>
* HashtableTest.cs: Added case where a cloned hashtable must also be
synchronized (if the original was).
* QueueTest.cs: Added case where we try to get Current after the last
MoveNext. Added case to ensure that MoveNext always return false
(after the first time). Test for synchronized clones.
* SortedListTest.cs: Added cases for synchronized capacity and testing
the interface from the internal enumerator. Test that setting Capacity
to zero return the capacity to it's initial default (16).
2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
* ArrayListTest.cs: Added tests for integer overflows.
2003-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* QueueTest.cs: added more tests. Patch from Carlos Barcenilla.
2003-11-10 Zoltan Varga <vargaz@freemail.hu>
* StackTest.cs: Applied patch from Carlos A. Barcenilla to fix minor
bugs (#50755).
2003-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HashtableTest.cs: patch from Carlos A. Barcenilla
(barce@frlp.utn.edu.ar) that includes some fixes for Hashtable +
NUnit2 tests.
2003-10-07 Nick Drochak <ndrochak@gol.com>
* DictionaryBaseTest.cs:
* NewArrayListTest.cs: Clean up warnings that were annoying me.
2003-08-12 Nick Drochak <ndrochak@gol.com>
* NewArrayListTest.cs: Disable part that was failing on .NET. Marked
with FIXME.
2003-08-11 Duncan Mak <duncan@ximian.com>
* ArrayListTest.cs: Added test case submitted by Tum in bug #45036.
* DictionaryBaseTest.cs: added new test provided by Carlos Barcenilla
(barce@frlp.utn.edu.ar).
2003-08-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* CollectionBaseTest.cs: added new test provided by Carlos Barcenilla
(barce@frlp.utn.edu.ar).
2003-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* CollectionBaseTest.cs: added a few more tests. Now derives from
Assertion.
2003-06-20 Nick Drochak <ndrochak@gol.com>
* SortedListTest.cs: Make it pass on .NET 1.1.
2003-06-14 Duncan Mak <duncan@ximian.com>
* SortedListTest.cs
(TestIndexer):
(TestEnumerator): Incorporated these two tests from Philippe
Lavoie <philippe.lavoie@cactus.ca>.
2003-06-12 Duncan Mak <duncan@ximian.com>
* HashtableTest.cs: Converted it to the new style of NUnit tests.
(TestCtor3):
(TestCtor4): new tests for the constructor.
2003-06-11 Duncan Mak <duncan@ximian.com>
* SortedListTest.cs: Convert it to the new style of NUnit tests.
(TestCapacity2):
(TestCapacity3):
(TestCapacity4): new tests for the Capacity property.
(TestIndexOfValue2):
(TestIndexOfValue3): new tests for the IndexOfValue method.
2003-06-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* HashtableTest.cs: removed duplicate tests and unneeded inner class.
2003-06-07 Ben Maurer <bmaurer@users.sourceforge.net>
* StackTest.cs: Added test for Contains (null)
2003-05-13 Nick Drochak <ndrochak@gol.com>
* DictionaryEntry.cs: Added test
2003-05-03 Ben Maurer <bmaurer@users.sourceforge.net>
* ArrayListTest.cs:
Tests for the above* ArrayList.cs
Added methods to support IList wrappers
2003-04-15 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
* CaseInsensitiveComparerTest.cs: Added Some Tests.
2003-04-09 Ville Palo <vi64pa@kolumbus.fi>
* ArraListTest.cs: Added little test for Sort ().
2003-02-15 Nick Drochak <ndrochak@gol.com>
* CollectionBaseTest.cs: Make it a better NUnit v2 example
2003-02-15 Pedro MartÃnez Juliá <yoros@wanadoo.es>
* HashtableTest.cs: Add serialization test.
2002-12-21 Nick Drochak <ndrochak@gol.com>
* all: make tests build and run under nunit2
2002-10-16 Nick Drochak <ndrochak@gol.com>
* QueueTest.cs: Add test from tetsuo via Vladimir Vukicevic
(vladimir@pobox.com).
2002-10-09 Nick Drochak <ndrochak@gol.com>
* SortedListTest.cs: Re-enable test for IsSyncronized
2002-09-24 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs: Add test for InsertRange() for the case where an
ArrayList is passed to itself to be insterted.
2002-09-24 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs: Add check that enumerator is invalidated after a
method that changes the list, such as Add(), Remove(), etc.
2002-07-02 Nick Drochak <ndrochak@gol.com>
* SortedListTest.cs: Fix some expected/actual value parameters for
AssertEquals().
2002-06-30 Nick Drochak <ndrochak@gol.com>
* SortedListTest.cs: Fix some expected/actual value parameters in the
Assert()'s. Disable a part of test until the class is finished.
2002-06-25 Nick Drochak <ndrochak@gol.com>
* QueueTest.cs: Trap some unexpected exceptions and add a bit of
verbosity to some assert messages.
2002-06-20 Nick Drochak <ndrochak@gol.com>
* SortedListTest.cs: Make tests pass against ms.net.
* QueueTest.cs: Make tests pass against ms.net.
2002-06-19 Nick Drochak <ndrochak@gol.com>
* AllTests.cs: Sort names and include missing tests.
* SortedListTest.cs: Change Console.WriteLine() into Fail().
2002-05-27 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestLastIndexOf): Add try-catch block to report
where we are throwing.
2002-05-21 Lawrence Pit <loz@cable.a2000.nl>
* ArrayListTest.cs: Added several tests to test for 0 capacity
2002-05-05 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs: Test for RankException when constructing from a
multi-dimensional array. Confirmed behavior from MS.NET
2002-05-01 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestBinarySearch) : accomodate possible bug in
.NET runtime.
2002/05/01 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestCopyTo) : Make assert messages unique and
avoid possible MS.NET bug when test is run on .NET.
2002/04/30 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestInsertRange) : Make assert messages unique.
2002-04-30 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestTrimToSize): Change test so that it doesn't
rely on the specific timing of a capacity change. Our corlib doubles
capacity sooner than the reference system does.
2002-04-30 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs: Catch unexpected exception typs and report as
failures.
2002-04-29 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (TestBinarySearch): Catch the correct exception here.
2002-04-29 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs (): Remove test on unsorted array. Behavior is
undefined according to docs. Re-added test that was commented out.
2002-03-24 Duncan Mak <duncan@ximian.com>
* SortedListTest.cs: Committed to CVS for Jaak Simm <jaaksimm@firm.ee>.
2002-02-28 Nick Drochak <ndrochak@gol.com>
* HashtableTest.cs: make the second test class public. The was showing
as an error whe run against the mscorlib. Might be because of the
new NUnit that was just checked in.
2002-02-20 Nick Drochak <ndrochak@gol.com>
* ArrayListTest.cs: Add a small assert for a bug that I found and fixed
in ArrayList. Make sure it doesn't come up again.
2002-02-10 Nick Drochak <ndrochak@gol.com>
* QueueTest.cs: Put in correct namespace.
2002-02-09 Nick Drochak <ndrochak@gol.com>
* StackTest.cs: Removed test for IsReadonly. Doesn't exist in .NET 1.0
2002-01-20 Nick Drochak <ndrochak@gol.com>
* BitArrayTest.cs: wrapped try-catch blocks around several of the tests.
NUnit doesn't properly catch exception here anymore. Must be something
to do with upgrading to .NET.1.0.
|