whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
original.name="OpenRecord_Valid_3"
======
>>> main.whiley


public type Object is {
    function fn(Object)->(int),
    ...
}

public function myFn(Object o) -> int:
    return 123

public function get(Object o) -> int:
    return o.fn(o)

public export method test() :
    Object o = {fn: &myFn}
    assume get(o) == 123

---