whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="Assert_Valid_1"
======
>>> main.whiley
function f(int[] xs) -> (int[] ys)
requires |xs| > 0
ensures ys[0] == 0:
    //
    xs[0] = 0
    //
    assert some { k in 0..|xs| | xs[k] == 0 }
    //
    return xs

//
public export method test():
    int[] xs = f([1])
    //
    assert xs[0] == 0

---