whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="Old_Valid_5"
whiley.compile.ignore=true
WhileyCompiler.issue=986
======
>>> main.whiley
method m(&(int[]) p)
ensures |*p| == |old(*p)|:
    //
    int len = |*p|
    //
    for i in 0..len:
        (*p)[i] = 0

public export method test():
    &(int[]) p = new [1,2,3]
    m(p)
    assert |*p| == 3

---