Skip to content

Commit

Permalink
Clarifies the meaning of "stochastic" for skipStochasticTests()
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorklang committed May 29, 2017
1 parent 3f8a79b commit b1e5b1d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ public long maxElementsFromPublisher() {

/**
* Override and return {@code true} in order to skip executing tests marked as {@code Stochastic}.
* Such tests MAY sometimes fail even though the impl
* Stochastic in this case means that the Rule is impossible or infeasible to deterministically verify—
* usually this means that this test case can yield false positives ("be green") even if for some case,
* the given implementation may violate the tested behaviour.
*/
public boolean skipStochasticTests() {
return false;
Expand Down

0 comments on commit b1e5b1d

Please sign in to comment.