Interface ITestResultProvider


public interface ITestResultProvider
Implementations of this interface can provide a test result when asked. This is used by a Galasa test to find out what the current test result is.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull IResult
    Gets the test result.
  • Method Details

    • getResult

      @NotNull @NotNull IResult getResult()
      Gets the test result.
      Returns:
      The IResult which can be queried for whether the test has passed or failed at this point. It will never be null. The returned result can be neither passing nor failing. If the test has not completed, then it won't have passed yet.