ChangeLog 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. 2002-12-21 Nick Drochak <[email protected]>
  2. * all: make tests build and run under nunit2
  3. 2002-09-24 Gonzalo Paniagua Javier <[email protected]>
  4. * PathTest.cs: added test for null argument in IsPathRooted.
  5. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  6. * BinaryReaderTest.cs: added more tests.
  7. Patch from Eduardo García Cebollero ([email protected]).
  8. 2002-09-19 Nick Drochak <[email protected]>
  9. * StreamReaderTest.cs: Pinpoint error closing streams
  10. 2002-09-10 Gonzalo Paniagua Javier <[email protected]>
  11. * FileTest.cs: don't leave AFile.txt open.
  12. 2002-09-08 Nick Drochak <[email protected]>
  13. * PathTest.cs (TestCombine): XP puts it's system root in WINDOWS not
  14. WINNT.
  15. 2002-09-04 Gonzalo Paniagua Javier <[email protected]>
  16. * PathTest.cs: some fixes to make it work also on unix.
  17. 2002-08-30 Nick Drochak <[email protected]>
  18. * PathTest.cs (TestGetPathRoot): Don't assume current directory will
  19. be on the C: drive (mine wasn't).
  20. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  21. * PathTest.cs: improved.
  22. 2002-08-26 Nick Drochak <[email protected]>
  23. * BinaryReaderTest.cs: Closing the stream twice doesn not throw any
  24. exceptions on .NET.
  25. 2002-08-17 Eduardo Garcia Cebollero <[email protected]>
  26. * AllTests.cs: added BinaryReaderTest.Suite.
  27. * BinaryReaderTest.cs: New file.
  28. 2002-06-12 Nick Drochak <[email protected]>
  29. * StringReaderTest.cs: Regression test for a bug that we had were
  30. ReadLine() was not returning null when the string ended with newline.
  31. 2002-05-15 Nick Drochak <[email protected]>
  32. * StreamReaderTest.cs:
  33. * StreamWriterTest.cs:
  34. Make sure invalid file name has invalid characters in it. These are
  35. platform dependant.
  36. 2002-05-14 Nick Drochak <[email protected]>
  37. * FileTest.cs: Delete temporary files after each test method; Catch
  38. unexpected exceptions and report them; Make some Assert messages
  39. unique; Make sure temp files exist before trying Move and Delete, etc.
  40. 2002-05-13 Mike Gray <[email protected]>
  41. * FileTest.cs: Adding better tests for File.Delete, File.Move
  42. 2002-05-12 Mike Gray <[email protected]>
  43. * FileTest.cs: Adding better tests for File.Exists, File.Create,
  44. and File.Copy
  45. 2002-05-12 Nick Drochak <[email protected]>
  46. * StringTest.cs: Add a couple more tests.
  47. * PathTest.cs: Make tests work a bit better on W32 and Linux.
  48. 2002/05/10 Nick Drochak <[email protected]>
  49. * StreamWriterTest.cs: Use "resources" directory and use OS friendly
  50. directory separator characters. This makes the tests run correctly
  51. against MS.NET, but not yet in mono on Linux.
  52. 2002/05/08 Nick Drochak <[email protected]>
  53. * FileTest.cs: Use "resources" directory and use OS friendly
  54. directory separator characters. This makes the tests run correctly
  55. against MS.NET, but not yet in mono on Linux.
  56. 2002-05-08 Nick Drochak <[email protected]>
  57. * StreamWriter.cs: Wrap a try-catch around block of code to find out
  58. what exception is being thrown when it shouldn't.
  59. 2002-05-07 Nick Drochak <[email protected]>
  60. * FileTest.cs: Added TestOpen() from Mike Gray.
  61. * AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
  62. as well.
  63. 2002-05-05 Nick Drochak <[email protected]>
  64. * StreamReaderTest.cs: Change location of sample file. In some places,
  65. use memory stream instead of file stream to eliminate reliance on file
  66. io for now. That area is still a bit immature. Added a bunch of
  67. markers to tell where errors were occuring.
  68. * resources: New directory to hold files open/read, etc. by unit
  69. tests.
  70. 2002-05-01 Nick Drochak <[email protected]>
  71. * StreamReaderTest.cs:
  72. * StreamWriterTest.cs: Catch and display exception info where it wasn't
  73. being caught before.
  74. 2002-03-02 Jason Diamond <[email protected]>
  75. * StringReader.cs: Added test for peeking and reading at the end of
  76. a string.
  77. 2002-02-28 Nick Drochak <[email protected]>
  78. * MemoryStreamTest.cs
  79. * StreamWriterTest.cs
  80. * StringReaderTest.cs: Fix test bugs found by running against mscorlib.
  81. AssertEquals() requires the expected and atual values to be the same
  82. type if they are to be considered equal.
  83. 2002-02-05 Duncan Mak <[email protected]>
  84. * FileTest.cs: Added to CVS. However, this portion of the code
  85. can't be tested right now.
  86. 2002-01-20 Nick Drochak <[email protected]>
  87. * AllTests.cs: removed duplicate MemoryStream test
  88. * MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
  89. tests. These were throwing exceptions that NUnit wasn't catching. I
  90. don't think it used to behave this way before .NET.1.0.