ChangeLog 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. 2002-05-12 Nick Drochak <[email protected]>
  2. * StringTest.cs: Add a couple more tests.
  3. * PathTest.cs: Make tests work a bit better on W32 and Linux.
  4. 2002/05/10 Nick Drochak <[email protected]>
  5. * StreamWriterTest.cs: Use "resources" directory and use OS friendly
  6. directory separator characters. This makes the tests run correctly
  7. against MS.NET, but not yet in mono on Linux.
  8. 2002/05/08 Nick Drochak <[email protected]>
  9. * FileTest.cs: Use "resources" directory and use OS friendly
  10. directory separator characters. This makes the tests run correctly
  11. against MS.NET, but not yet in mono on Linux.
  12. 2002-05-08 Nick Drochak <[email protected]>
  13. * StreamWriter.cs: Wrap a try-catch around block of code to find out
  14. what exception is being thrown when it shouldn't.
  15. 2002-05-07 Nick Drochak <[email protected]>
  16. * FileTest.cs: Added TestOpen() from Mike Gray.
  17. * AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
  18. as well.
  19. 2002-05-05 Nick Drochak <[email protected]>
  20. * StreamReaderTest.cs: Change location of sample file. In some places,
  21. use memory stream instead of file stream to eliminate reliance on file
  22. io for now. That area is still a bit immature. Added a bunch of
  23. markers to tell where errors were occuring.
  24. * resources: New directory to hold files open/read, etc. by unit
  25. tests.
  26. 2002-05-01 Nick Drochak <[email protected]>
  27. * StreamReaderTest.cs:
  28. * StreamWriterTest.cs: Catch and display exception info where it wasn't
  29. being caught before.
  30. 2002-03-02 Jason Diamond <[email protected]>
  31. * StringReader.cs: Added test for peeking and reading at the end of
  32. a string.
  33. 2002-02-28 Nick Drochak <[email protected]>
  34. * MemoryStreamTest.cs
  35. * StreamWriterTest.cs
  36. * StringReaderTest.cs: Fix test bugs found by running against mscorlib.
  37. AssertEquals() requires the expected and atual values to be the same
  38. type if they are to be considered equal.
  39. 2002-02-05 Duncan Mak <[email protected]>
  40. * FileTest.cs: Added to CVS. However, this portion of the code
  41. can't be tested right now.
  42. 2002-01-20 Nick Drochak <[email protected]>
  43. * AllTests.cs: removed duplicate MemoryStream test
  44. * MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
  45. tests. These were throwing exceptions that NUnit wasn't catching. I
  46. don't think it used to behave this way before .NET.1.0.