jmock-developers / jmock-library

An expressive Mock Object library for Test Driven Development
http://www.jmock.org
BSD 3-Clause "New" or "Revised" License
133 stars 70 forks source link

DeterministicScheduler: Future is done if cancelled #237

Closed leonz closed 8 months ago

leonz commented 1 year ago

The Javadoc for Future implies that isDone() is always true if isCancelled() is true.

Returns true if this task completed. Completion may be due to normal termination, an exception, or cancellation -- in all of these cases, this method will return true.

https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html#isDone--