ChangeLog 22 KB

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