If you want to make your unit tests look huge: just enable runtime theming in the DUnit GUI runner. It only runs 15 to 20 times slower then. lol

If you want to make your unit tests look huge: just enable runtime theming in the DUnit GUI runner. It only runs 15 to 20 times slower then. lol

Comments

  1. That reminds me on sleep(1000); after each item on a splash screen which is loaded, so the user can read what is loaded.

    ReplyDelete
  2. Ancient times when there were only 3 items to load and to make it look busy ;)

    ReplyDelete
  3. Have to remember this, as it is the length of time for the tests to run that indicates how well things are tested (or the amount of coverage done by unit tests), right? It has nothing to do with the actual tests at all, does it?  ;-)

    ReplyDelete
  4. A slower test must be way better then a faster one: if it's so slow, this means its' testing a lot of things! :)
    More seriously: fast tests are important if you are adopting continuous integration and tests are part of your commit/checkin operations.

    ReplyDelete
  5. I am always adding some sleeps to unit tests to work around threading issues like race conditions. All tests are green. Just kidding ;)

    ReplyDelete

Post a Comment