ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. 2005-05-18 Sebastien Pouliot <[email protected]>
  2. * StreamCas.cs: New. CAS unit tests to test stack propagation for
  3. BeginRead and BeginWrite.
  4. * FileStreamCas.cs: Added tests to test stack propagation for
  5. BeginRead and BeginWrite.
  6. 2005-05-09 Sebastien Pouliot <[email protected]>
  7. * DirectoryCas.cs: Fixed IsRunningOnWindows (inversed logic). That
  8. didn't change the tests as the SecurityException occurs before the
  9. parameters are checked (when all goes well ;-). Fixed for NET_2_0 too.
  10. * DirectoryInfoTest.cs: Fixed PlatformID.Unix for NET_2_0.
  11. 2005-05-06 Ben Maurer <[email protected]>
  12. * FileTest.cs (OpenAppend): Test for #71088.
  13. 2005-04-13 Gonzalo Paniagua Javier <[email protected]>
  14. * DirectoryInfoTest.cs: added test for bug #53173.
  15. 2005-04-09 Miguel de Icaza <[email protected]>
  16. * StreamWriterTest.cs: New test for bug #74513.
  17. 2005-03-24 Sebastien Pouliot <[email protected]>
  18. * DirectoryCas.cs: Added partial trust unit tests.
  19. * DirectoryTest.cs: Added missing [Test] attribute to
  20. SetCreationTimeException1.
  21. * FileStreamCas.cs: New. CAS unit tests for FileStream.
  22. * PathCas.cs: New. CAS unit tests for Path.
  23. * PathTest.cs: Splitted TestGetPathRoot test in two so the second part
  24. could be re-used in partial trust tests.
  25. 2005-03-15 Sebastien Pouliot <[email protected]>
  26. * FileStreamTest.cs: Added tests for all FileMode when a directory
  27. doesn't exists. Added a test for UnauthorizedAccessException when a
  28. directory is opened as a file.
  29. 2005-01-28 Sebastien Pouliot <[email protected]>
  30. * FileLoadExceptionCas.cs: Fixed failures under MS for NET_1_1.
  31. * FileNotFoundExceptionCas.cs: Fixed failures under MS for NET_1_1.
  32. 2005-03-02 Raja R Harinath <[email protected]>
  33. * FileStreamTest.cs (Constructor_InvalidFileHandle): Fix to work
  34. on 64-bit platforms.
  35. 2005-02-06 Gonzalo Paniagua Javier <[email protected]>
  36. * FileTest.cs: test for invalid characters in file names.
  37. 2005-01-28 Sebastien Pouliot <[email protected]>
  38. * DirectoryCas.cs: New. Very limited permission tests for Directory.
  39. Actually it's only there to support tests for System.Environment.
  40. * FileLoadExceptionCas.cs: New. Permission tests for FileLoadException
  41. * FileNotFoundExceptionCas.cs: New. Permission tests for
  42. FileNotFoundException.
  43. 2005-01-19 Nick Drochak <[email protected]>
  44. * FileStreamTest.cs: Fix test regression on .NET. Need to close
  45. stream so other tests don't fail.
  46. 2004-12-06 Atsushi Enomoto <[email protected]>
  47. * TextWriterTest.cs : added.
  48. 2004-12-04 Ben Maurer <[email protected]>
  49. * DirectoryInfoTest.cs: Check for CreateSubdirectory with empty string.
  50. 2004-08-31 Nick Drochak <[email protected]>
  51. * StringWriterTest.cs: Eliminate ambiguity so csc can compile.
  52. 2004-06-21 Atsushi Enomoto <[email protected]>
  53. * FileStreamTest.cs : Added some tests on .ctor() without FileShare.
  54. 2004-06-21 Atsushi Enomoto <[email protected]>
  55. FileInfoTest.cs : more '/' and Path.DirectorySeparatorChar fixes
  56. 2004-06-21 Atsushi Enomoto <[email protected]>
  57. * DirectoryInfoTest.cs,
  58. DirectoryTest.cs,
  59. FileStreamTest.cs,
  60. FileSystemInfoTest.cs:
  61. Replace all '/' in path with Path.DirectorySeparatorChar.
  62. 2004-06-08 Duncan Mak <[email protected]>
  63. * DirectoryTest.cs (GetParentOfRootDirectory): Add test for
  64. GetParent from the root directory.
  65. 2004-06-07 Duncan Mak <[email protected]>
  66. * FileStreamTest.cs (SetLengthWithClosedBaseStream): New test for
  67. checking that the correct exception is thrown when the base stream
  68. is closed.
  69. 2004-06-03 Sebastien Pouliot <[email protected]>
  70. * BufferedStreamTest.cs: Modified two tests (using newer helper
  71. classes) to be more specific and avoid regressions of bugs like
  72. #59534.
  73. * StreamHelperTest.cs: New. Helper classes that provides read-only,
  74. write-only or non-seekable stream.
  75. 2004-05-31 Sebastien Pouliot <[email protected]>
  76. * FileTest.cs: Added tests to confirm that Exists never throws
  77. exceptions even for invalid filenames or for unexisting directories.
  78. * PathTest.cs: Added windows-specific tests that shows that
  79. ChangeExtension validate the input patch but doesn't validate the
  80. resulting path.
  81. 2004-05-30 Sebastien Pouliot <[email protected]>
  82. * BufferedStreamTest.cs: Added tests for Position after SetLength,
  83. SetLength after Close and Seek logic exception handling.
  84. * FileStream.cs: Added test for invalid SeekOrigin in Seek. Lots of
  85. new tests for exception handling (negatives, disposed) and test
  86. reading a byte ast the end of the stream.
  87. * MemoryStream.cs: Added test for Seek after Close.
  88. 2004-05-29 Sebastien Pouliot <[email protected]>
  89. * BinaryReader.cs: Added new cases to check exceptions thrown by Read
  90. methods.
  91. 2004-05-26 Atsushi Enomoto <[email protected]>
  92. * FileInfoTest.cs : more incorrect \ fix.
  93. 2004-05-26 Sebastien Pouliot <[email protected]>
  94. * BufferedStreamTest.cs: Added new unit tests for exceptions.
  95. * FileStreamTest.cs: Added new tests for integer overflow checks.
  96. * StringReaderTest.cs: Added new tests for integer overflow checks.
  97. 2003-05-26 Atsushi Enomoto <[email protected]>
  98. * FileInfoTest.cs : incorrect \ fix. added more cases.
  99. 2003-05-26 Atsushi Enomoto <[email protected]>
  100. * FileInfoTest.cs : added tests for ToString().
  101. 2004-05-25 Gonzalo Paniagua Javier <[email protected]>
  102. * DirectoryTest.cs: added test from bug 58875.
  103. 2004-05-24 Sebastien Pouliot <[email protected]>
  104. * MemoryStreamTest.cs: Test that we zeroize old data when we manipulate
  105. the length of the stream. Verify that we throw the same exceptions as
  106. MS fx.
  107. * StreamReaderTest.cs: New tests for integer overflow and null handling
  108. * StreamWriterTest.cs: New tests for integer overflow, disposed
  109. exceptions and null handling.
  110. * StringWriterTest.cs: New tests for integer overflow and disposed
  111. exceptions.
  112. 2004-05-20 Sebastien Pouliot <[email protected]>
  113. * MemoryStream.cs: SetUp is now public (required for new nunit).
  114. 2004-05-20 Jackson Harper <[email protected]>
  115. * DirectoryInfoTest.cs: Add test for CreateSubdirectory.
  116. 2004-04-12 David Sheldon <[email protected]>
  117. * BinaryReaderTest.cs: Changed series of bytes in
  118. ReadDecimal to be a cleaner representation of a real
  119. decimal, as was not a technically correct decimal.
  120. 2004-04-01 Lluis Sanchez Gual <[email protected]>
  121. * BufferedStreamTest.cs: Added test for Position.
  122. 2003-04-03 Atsushi Enomoto <[email protected]>
  123. * PathTest.cs : Added more patterns on TestChangeExtension().
  124. 2004-02-16 Jackson Harper <[email protected]>
  125. * FileTest.cs: We do not need to convert to local time because we
  126. are getting creation time, not utc time.
  127. 2004-01-31 David Sheldon <[email protected]>
  128. * FileSystemInfoTest.cs: Added code to skip CreationTime tests
  129. on Unix, as it doesn't support them.
  130. 2004-01-31 David Sheldon <[email protected]>
  131. * FileSystemInfoTest.cs: Change tests for default times to
  132. be TimeZone agnostic by conversion to universal time before
  133. testing.
  134. 2004-01-22 David Sheldon <[email protected]>
  135. * FileStreamTest.cs: CtorArgumentOutOfRangeException4, we were
  136. testing for this ecveption, but the other parameters were also
  137. invalid. Made them correct. We don't care that MS throw
  138. exceptions in a different order do we?
  139. 2004-01-22 David Sheldon <[email protected]>
  140. * DirectoryTest.cs: Added Ignore to the CreationTime tests,
  141. as Unix filesystems don't support them. Should we only ignore
  142. them on Unix?
  143. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  144. * PathTest.cs: added some unix-only tests for GetFullPath.
  145. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  146. * PathTest.cs: a couple of tests for bugs.
  147. 2003-01-06 Atsushi Enomoto <[email protected]>
  148. * DirectoryTest.cs : remoed incorrect args.
  149. 2003-12-25 Atsushi Enomoto <[email protected]>
  150. * PathTest.cs : On Unix, "Z:" can be valid local file.
  151. And cosmetic character case fix.
  152. 2003-12-19 Nick Drochak <[email protected]>
  153. * PathTest.cs: Make tests pass on .NET 1.1. Probably still
  154. need to handle different directory and volume separators for
  155. other OS's.
  156. 2003-12-17 Atsushi Enomoto <[email protected]>
  157. * PathTest.cs :
  158. Added more GetPathRoot and GetFullPath tests for windows.
  159. Fixed incorrectly specified arguments in the previous patch.
  160. 2003-12-17 Atsushi Enomoto <[email protected]>
  161. * PathTest.cs : Added more tests for IsPathRooted, HasExtension
  162. and GetExtension.
  163. 2003-12-17 Atsushi Enomoto <[email protected]>
  164. * DirectoryTests.cs : Added some SetCurrentDirectory tests.
  165. 2003-12-17 Nick Drochak <[email protected]>
  166. * FileStreamTest.cs: Ok, it wasn't a 1.1 thing. The test simply would
  167. fail randomly because location 12 was sometimes a file handle.
  168. 2003-12-16 Nick Drochak <[email protected]>
  169. * FileStreamTest.cs: Exception not thrown in .NET 1.1.
  170. And Happy Birthday to Me!
  171. 2003-11-15 Gonzalo Paniagua Javier <[email protected]>
  172. * StringReaderTest.cs: added test from bug #51020.
  173. 2003-10-21 Nick Drochak <[email protected]>
  174. * BufferedSTreamTest.cs: Make TearDown smarter about possible
  175. null member value.
  176. 2003-07-10 Gonzalo Paniagua Javier <[email protected]>
  177. * MemoryStreamTest.cs: added a couple of tests for WriteByte.
  178. 2003-06-30 Zoltan Varga <[email protected]>
  179. * FileStreamTest.cs: New tests for flushing when disposed and zero
  180. buffer size.
  181. 2003-06-18 Nick Drochak <[email protected]>
  182. * FileSystemInfoTest.cs: Simplify a bit.
  183. 2003-06-18 Nick Drochak <[email protected]>
  184. * FileSystemInfoTest.cs: Works on .NET 1.1 now. If these values are
  185. different on 1.0 then we need to wrap with a #if NET_1_1.
  186. 2003-06-12 Zoltan Varga <[email protected]>
  187. * FileStreamTest.cs: New tests for recently fixed bugs.
  188. 2003-06-08 Ville Palo <[email protected]>
  189. * BinaryWriterTest.cs:
  190. * BinaryReaderTest.cs:
  191. * DirectoryTest.cs:
  192. * FileTest.cs: now works with ms.net, clean ups, nunit2, ...
  193. 2003-05-29 Nick Drochak <[email protected]>
  194. * ms_run_test.sh: added .NET verion of helper script
  195. * BinaryReaderTest.cs: fix my oversight
  196. * BinaryWriterTest.cs: cleanups
  197. * BufferedStreamTest.cs: cleanups
  198. * DirectoryInfoTest.cs: cleanups
  199. * DirectoryTest.cs: cleanups
  200. * FileStreamTest.cs: cleanups
  201. 2003-05-29 Nick Drochak <[email protected]>
  202. * BinaryReaderTest.cs:
  203. * BinaryWriterTest.cs:
  204. * DirectoryInfoTest.cs:
  205. * DirectoryTest.cs:
  206. * FileInfoTest.cs:
  207. * FileStreamTest.cs:
  208. * FileSystemInfoTest.cs: Stop throwing exceptions on windows, and sub-
  209. class from Assertion for brevity.
  210. 2003-05-22 Ben Maurer <[email protected]>
  211. StringWriterTest.cs: Added tests from bug #43431 (by Ian MacLean).
  212. 2003-05-22 Nick Drochak <[email protected]>
  213. * StreamReaderTest.cs:
  214. * StreamWriterTest.cs: Forgot nunit v2 TestFixture attribute
  215. 2003-05-22 Zoltan Varga <[email protected]>
  216. * FileTest.cs: Added tests for moving directories.
  217. 2003-05-20 Nick Drochak <[email protected]>
  218. * FileTest.cs:
  219. * StreamReaderTest.cs:
  220. * StreamWriterTest.cs: Workaround for process holding on to directory
  221. that prevented cleanup and deletion.
  222. 2003-05-19 Ville Palo <[email protected]>
  223. * DirectoryTest.cs: Added tests for GetDirectories() and
  224. GetFiles ()
  225. 2003-05-18 Ben Maurer <[email protected]>
  226. * *.cs Cleaned up tests to work around bug that prevented
  227. System.IO from seeing directories starting with '.'
  228. 2003-05-15 Ville Palo <[email protected]>
  229. * FileStreamTest.cs: more cleaning
  230. 2003-05-15 Ville Palo <[email protected]>
  231. * StreamReaderTest.cs:
  232. * StreamWriterTest.cs: now use temp-dir
  233. 2003-05-15 Ville Palo <[email protected]>
  234. * BinaryReaderTest.cs:
  235. * BinaryWriterTest.cs:
  236. * BufferedStreamTest.cs:
  237. * DirectoryInfoTest.cs:
  238. * DirectoryTest.cs:
  239. * FileInfoTest.cs:
  240. * FileSystemInfoTest.cs: clean up, now use temp-dir
  241. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  242. * PathTest.cs: added test for GetFullPath (".") and ".."
  243. 2003-05-13 Ville Palo <[email protected]>
  244. * FileStreamTest.cs:
  245. * FileTest.cs: Clean up. Now use temp directory. also some nunit2
  246. changes
  247. 2003-05-98 Ville Palo <[email protected]>
  248. * FileSystemInfoTest.cs; new file
  249. 2003-05-07 Ben Maurer <[email protected]>
  250. * PathTest.cs
  251. Even more GetFullPath () tests. Includes UNC tests.
  252. 2003-05-06 Ville Palo <[email protected]>
  253. * DirectoryInfoTest.cs: Removed OS-specific test
  254. 2003-05-06 Ville Palo <[email protected]>
  255. * DirectoryTest: Fixed Utc errors
  256. * FileTest: Fixes Utc errors. Now these tests works in other
  257. timezones too.
  258. 2003-05-04 Ben Maurer <[email protected]>
  259. * PathTest.cs
  260. Added new tests for GetFullPath () that include a path with
  261. . and ..
  262. 2003-05-05 Ville Palo <[email protected]>
  263. * DirectoryInfoTest.cs: new file.
  264. 2003-05-04 Ville Palo <[email protected]>
  265. * FileInfoTest.cs: new file.
  266. * FileStreamTest.cs: new tests for Seek ()
  267. 2003-04-29 Ville Palo <[email protected]>
  268. * FileStreamTest.cs: Tests for Flush() adn one one more test for
  269. Ctor exceptions
  270. 2003-04-25 Ville Palo <[email protected]>
  271. * FileTest.cs: more tests..
  272. 2003-04-24 Ville Palo <[email protected]>
  273. * FileTest.cs: Fixed tests and added some.
  274. 2003-04-22 Ville Palo <[email protected]>
  275. * FileTest.cs: More tests.
  276. 2003-04-21 Ville Palo <[email protected]>
  277. * DirectoryTest.cs: lots of new tests. and some fixes and clean ups
  278. 2003-04-20 Miguel de Icaza <[email protected]>
  279. * StringReaderTest.cs: Update test to include read-past-the-end
  280. 2003-04-20 Ville Palo <[email protected]>
  281. * DirectoryTest.cs: new file
  282. 2003-04-16 Ville Palo <[email protected]>
  283. * BufferedStreamTest.cs: new file
  284. 2003-04-14 Ville Palo <[email protected]>
  285. * BinaryWriterTest.cs: Added new file.
  286. 2003-04-13 Ville Palo <[email protected]>
  287. * BinaryReaderTest.cs: Added lots of tests. Somehow I missed that
  288. there are already testcases for BinaryStreamReader :/
  289. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  290. * FileStreamTest.cs: added more tests by Gert Driesen
  291. ([email protected]).
  292. 2003-04-12 Ville Palo <[email protected]>
  293. * FileStreamTest.cs More tests.
  294. 2003-04-11 Ville Palo <[email protected]>
  295. * FileStreamTest.cs: File Added and some tests in it.
  296. 2003-04-11 Ville Palo <[email protected]>
  297. * StringReaderTest.cs: Tests for close and some exceptions
  298. 2003-04-11 Ville Palo <[email protected]>
  299. * StringWriterTest.cs: Added some Exception tests.
  300. 2003-04-10 Ville Palo <[email protected]>
  301. * StringWriterTest.cs: Added couple of tests.
  302. 2003-04-05 Nick Drochak <[email protected]>
  303. * PathTest.cs: Use nunit2 convention for exception test.
  304. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  305. * StreamReaderTest.cs: added test for exception when the nase stream is
  306. closed. Make the reader.CurrentEncoding test work.
  307. 2003-03-05 Dick Porter <[email protected]>
  308. * MemoryStreamTest.cs: Some more tests
  309. 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
  310. * MemoryStreamTest.cs: some nunit2 love. Added a bunch of new tests.
  311. 2003-02-05 Nick Drochak <[email protected]>
  312. * FileTest.cs: Have setup remove files before testing as well in case
  313. tests were interrupted before TearDown could be called in a previous
  314. run. Also test for specific exception in TestGetCreationTime ().
  315. 2003-01-28 Zoltan Varga <[email protected]>
  316. * FileTest.cs: Added tests for GetCreationTime.
  317. 2002-12-21 Nick Drochak <[email protected]>
  318. * all: make tests build and run under nunit2
  319. 2002-09-24 Gonzalo Paniagua Javier <[email protected]>
  320. * PathTest.cs: added test for null argument in IsPathRooted.
  321. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  322. * BinaryReaderTest.cs: added more tests.
  323. Patch from Eduardo García Cebollero ([email protected]).
  324. 2002-09-19 Nick Drochak <[email protected]>
  325. * StreamReaderTest.cs: Pinpoint error closing streams
  326. 2002-09-10 Gonzalo Paniagua Javier <[email protected]>
  327. * FileTest.cs: don't leave AFile.txt open.
  328. 2002-09-08 Nick Drochak <[email protected]>
  329. * PathTest.cs (TestCombine): XP puts it's system root in WINDOWS not
  330. WINNT.
  331. 2002-09-04 Gonzalo Paniagua Javier <[email protected]>
  332. * PathTest.cs: some fixes to make it work also on unix.
  333. 2002-08-30 Nick Drochak <[email protected]>
  334. * PathTest.cs (TestGetPathRoot): Don't assume current directory will
  335. be on the C: drive (mine wasn't).
  336. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  337. * PathTest.cs: improved.
  338. 2002-08-26 Nick Drochak <[email protected]>
  339. * BinaryReaderTest.cs: Closing the stream twice doesn not throw any
  340. exceptions on .NET.
  341. 2002-08-17 Eduardo Garcia Cebollero <[email protected]>
  342. * AllTests.cs: added BinaryReaderTest.Suite.
  343. * BinaryReaderTest.cs: New file.
  344. 2002-06-12 Nick Drochak <[email protected]>
  345. * StringReaderTest.cs: Regression test for a bug that we had were
  346. ReadLine() was not returning null when the string ended with newline.
  347. 2002-05-15 Nick Drochak <[email protected]>
  348. * StreamReaderTest.cs:
  349. * StreamWriterTest.cs:
  350. Make sure invalid file name has invalid characters in it. These are
  351. platform dependant.
  352. 2002-05-14 Nick Drochak <[email protected]>
  353. * FileTest.cs: Delete temporary files after each test method; Catch
  354. unexpected exceptions and report them; Make some Assert messages
  355. unique; Make sure temp files exist before trying Move and Delete, etc.
  356. 2002-05-13 Mike Gray <[email protected]>
  357. * FileTest.cs: Adding better tests for File.Delete, File.Move
  358. 2002-05-12 Mike Gray <[email protected]>
  359. * FileTest.cs: Adding better tests for File.Exists, File.Create,
  360. and File.Copy
  361. 2002-05-12 Nick Drochak <[email protected]>
  362. * StringTest.cs: Add a couple more tests.
  363. * PathTest.cs: Make tests work a bit better on W32 and Linux.
  364. 2002/05/10 Nick Drochak <[email protected]>
  365. * StreamWriterTest.cs: Use "resources" directory and use OS friendly
  366. directory separator characters. This makes the tests run correctly
  367. against MS.NET, but not yet in mono on Linux.
  368. 2002/05/08 Nick Drochak <[email protected]>
  369. * FileTest.cs: Use "resources" directory and use OS friendly
  370. directory separator characters. This makes the tests run correctly
  371. against MS.NET, but not yet in mono on Linux.
  372. 2002-05-08 Nick Drochak <[email protected]>
  373. * StreamWriter.cs: Wrap a try-catch around block of code to find out
  374. what exception is being thrown when it shouldn't.
  375. 2002-05-07 Nick Drochak <[email protected]>
  376. * FileTest.cs: Added TestOpen() from Mike Gray.
  377. * AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
  378. as well.
  379. 2002-05-05 Nick Drochak <[email protected]>
  380. * StreamReaderTest.cs: Change location of sample file. In some places,
  381. use memory stream instead of file stream to eliminate reliance on file
  382. io for now. That area is still a bit immature. Added a bunch of
  383. markers to tell where errors were occuring.
  384. * resources: New directory to hold files open/read, etc. by unit
  385. tests.
  386. 2002-05-01 Nick Drochak <[email protected]>
  387. * StreamReaderTest.cs:
  388. * StreamWriterTest.cs: Catch and display exception info where it wasn't
  389. being caught before.
  390. 2002-03-02 Jason Diamond <[email protected]>
  391. * StringReader.cs: Added test for peeking and reading at the end of
  392. a string.
  393. 2002-02-28 Nick Drochak <[email protected]>
  394. * MemoryStreamTest.cs
  395. * StreamWriterTest.cs
  396. * StringReaderTest.cs: Fix test bugs found by running against mscorlib.
  397. AssertEquals() requires the expected and atual values to be the same
  398. type if they are to be considered equal.
  399. 2002-02-05 Duncan Mak <[email protected]>
  400. * FileTest.cs: Added to CVS. However, this portion of the code
  401. can't be tested right now.
  402. 2002-01-20 Nick Drochak <[email protected]>
  403. * AllTests.cs: removed duplicate MemoryStream test
  404. * MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
  405. tests. These were throwing exceptions that NUnit wasn't catching. I
  406. don't think it used to behave this way before .NET.1.0.
  407. 2003-05-04 Ben Maurer <[email protected]>
  408. * Path.cs
  409. (CanonicalizePath) Added optimizations per Miguel's requests.