ChangeLog 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. 2005-09-21 Sebastien Pouliot <[email protected]>
  2. * SimpleWorkerRequestTest.cs: When in doubt write more tests...
  3. 2005-09-18 Sebastien Pouliot <[email protected]>
  4. * SimpleWorkerRequestTest.cs: Ensure a trailing / in the expected path
  5. as GetAppPathTranslated must have one (while most directory methods
  6. don't append one).
  7. 2005-09-13 Sebastien Pouliot <[email protected]>
  8. * SimpleWorkerRequestTest.cs: Added a test case (GetUriPath) that was
  9. failing in the CAS tests (but wasn't CAS related).
  10. * SimpleWorkerRequestCas.cs: Ignore the ctor(string,string,TextWriter)
  11. test as I don't have a working test case. Simplify GetUriPath check
  12. so it doesn't fail.
  13. 2005-09-10 Sebastien Pouliot <[email protected]>
  14. * AppDomainFactoryCas.cs: New. CAS unit tests for AppDomainFactory.
  15. * ApplicationHostCas.cs: New. CAS unit tests for ApplicationHost.
  16. * ISAPIRuntimeCas.cs: New. CAS unit tests for ISAPIRuntime.
  17. * SimpleWorkerRequestCas.cs: New. CAS unit tests for
  18. SimpleWorkerRequest.
  19. * SimpleWorkerRequestTest.cs: Added a few (unworking) test cases for
  20. GetPathInfo method.
  21. 2005-08-22 Chris Toshok <[email protected]>
  22. * SimpleWorkerRequestTest.cs (Host): make cwd =
  23. "Environment.CurrentDirectory + Path.DirectorySeparatorChar" so we
  24. pass on MS.
  25. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  26. * SimpleWorkerRequestTest.cs: add 2 more assertions.
  27. * ApplicationHostTest.cs: fix test for the path of web.config.
  28. 2005-07-27 Miguel de Icaza <[email protected]>
  29. * SimpleWorkerRequestTest.cs: Do not use the "/tmp" directory as
  30. that makes the tests fail if we create a hosted
  31. SimpleWorkerRequest.
  32. Instead use the current directory, and before starting up, create
  33. a bin directory and copy the assembly there to allow us to create
  34. a host.
  35. Also, replicate the tests for when we are hosted in a new
  36. appdomain, as "MapPath" does work in this case. When running
  37. SimpleWorkerRequest on the main domain MapPath always returns
  38. null.