G
Guest
I have a test application that will run multiple types of tests. Some are
quite short (milli-seconds to seconds) and can run in parallel and others
need to run serially - they take several minutes to run. I've done some
reading and it doesn't seem that pooling will meet my needs because I can't
define priorities. Does someone have an example of how I can create and
manage various threads by priority levels? For example, I may have (3) test
cases that can run in parallel and therefore are priority 2. I have (2) test
cases that need to run alone and are therefore priority 1. The test cases
could come at me in any order.
quite short (milli-seconds to seconds) and can run in parallel and others
need to run serially - they take several minutes to run. I've done some
reading and it doesn't seem that pooling will meet my needs because I can't
define priorities. Does someone have an example of how I can create and
manage various threads by priority levels? For example, I may have (3) test
cases that can run in parallel and therefore are priority 2. I have (2) test
cases that need to run alone and are therefore priority 1. The test cases
could come at me in any order.