Interface Completable


public interface Completable
Interface indicates that test action is aware of its completed state. This is used when test case needs to wait for nested actions to finish working before closing the test case. Asynchronous test action execution may implement this interface in order to publish the completed state of forked processes.
Since:
2.7.4
Author:
Christoph Deppisch
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Checks for test action to be finished.
  • Method Details

    • isDone

      boolean isDone(TestContext context)
      Checks for test action to be finished.
      Returns: