| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- 2002-12-21 Nick Drochak <[email protected]>
- * all: make tests build and run under nunit2
- 2002-09-24 Gonzalo Paniagua Javier <[email protected]>
- * PathTest.cs: added test for null argument in IsPathRooted.
- 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
- * BinaryReaderTest.cs: added more tests.
- Patch from Eduardo García Cebollero ([email protected]).
- 2002-09-19 Nick Drochak <[email protected]>
- * StreamReaderTest.cs: Pinpoint error closing streams
- 2002-09-10 Gonzalo Paniagua Javier <[email protected]>
- * FileTest.cs: don't leave AFile.txt open.
- 2002-09-08 Nick Drochak <[email protected]>
- * PathTest.cs (TestCombine): XP puts it's system root in WINDOWS not
- WINNT.
- 2002-09-04 Gonzalo Paniagua Javier <[email protected]>
- * PathTest.cs: some fixes to make it work also on unix.
- 2002-08-30 Nick Drochak <[email protected]>
- * PathTest.cs (TestGetPathRoot): Don't assume current directory will
- be on the C: drive (mine wasn't).
- 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
- * PathTest.cs: improved.
- 2002-08-26 Nick Drochak <[email protected]>
- * BinaryReaderTest.cs: Closing the stream twice doesn not throw any
- exceptions on .NET.
- 2002-08-17 Eduardo Garcia Cebollero <[email protected]>
- * AllTests.cs: added BinaryReaderTest.Suite.
- * BinaryReaderTest.cs: New file.
- 2002-06-12 Nick Drochak <[email protected]>
- * StringReaderTest.cs: Regression test for a bug that we had were
- ReadLine() was not returning null when the string ended with newline.
- 2002-05-15 Nick Drochak <[email protected]>
- * StreamReaderTest.cs:
- * StreamWriterTest.cs:
- Make sure invalid file name has invalid characters in it. These are
- platform dependant.
- 2002-05-14 Nick Drochak <[email protected]>
- * FileTest.cs: Delete temporary files after each test method; Catch
- unexpected exceptions and report them; Make some Assert messages
- unique; Make sure temp files exist before trying Move and Delete, etc.
- 2002-05-13 Mike Gray <[email protected]>
- * FileTest.cs: Adding better tests for File.Delete, File.Move
- 2002-05-12 Mike Gray <[email protected]>
- * FileTest.cs: Adding better tests for File.Exists, File.Create,
- and File.Copy
- 2002-05-12 Nick Drochak <[email protected]>
- * StringTest.cs: Add a couple more tests.
- * PathTest.cs: Make tests work a bit better on W32 and Linux.
- 2002/05/10 Nick Drochak <[email protected]>
- * StreamWriterTest.cs: Use "resources" directory and use OS friendly
- directory separator characters. This makes the tests run correctly
- against MS.NET, but not yet in mono on Linux.
- 2002/05/08 Nick Drochak <[email protected]>
- * FileTest.cs: Use "resources" directory and use OS friendly
- directory separator characters. This makes the tests run correctly
- against MS.NET, but not yet in mono on Linux.
- 2002-05-08 Nick Drochak <[email protected]>
- * StreamWriter.cs: Wrap a try-catch around block of code to find out
- what exception is being thrown when it shouldn't.
- 2002-05-07 Nick Drochak <[email protected]>
- * FileTest.cs: Added TestOpen() from Mike Gray.
- * AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
- as well.
- 2002-05-05 Nick Drochak <[email protected]>
- * StreamReaderTest.cs: Change location of sample file. In some places,
- use memory stream instead of file stream to eliminate reliance on file
- io for now. That area is still a bit immature. Added a bunch of
- markers to tell where errors were occuring.
- * resources: New directory to hold files open/read, etc. by unit
- tests.
- 2002-05-01 Nick Drochak <[email protected]>
- * StreamReaderTest.cs:
- * StreamWriterTest.cs: Catch and display exception info where it wasn't
- being caught before.
- 2002-03-02 Jason Diamond <[email protected]>
- * StringReader.cs: Added test for peeking and reading at the end of
- a string.
- 2002-02-28 Nick Drochak <[email protected]>
- * MemoryStreamTest.cs
- * StreamWriterTest.cs
- * StringReaderTest.cs: Fix test bugs found by running against mscorlib.
- AssertEquals() requires the expected and atual values to be the same
- type if they are to be considered equal.
- 2002-02-05 Duncan Mak <[email protected]>
- * FileTest.cs: Added to CVS. However, this portion of the code
- can't be tested right now.
- 2002-01-20 Nick Drochak <[email protected]>
- * AllTests.cs: removed duplicate MemoryStream test
- * MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
- tests. These were throwing exceptions that NUnit wasn't catching. I
- don't think it used to behave this way before .NET.1.0.
|