whiley_test_file 0.6.2

An API for manipulating test files for the Whiley Programming Language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
original.name="Template_Valid_41"
======
>>> main.whiley
type Point is {int x, int y}
type Message<T,S> is { T t, S s }

public export method test():
    Point p = {x:1,y:2}
    Message<Point,bool> h = { t:p, s:false }
    assert h.t.x == 1 && h.t.y == 2
    assert h.s == false

---