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
14
15
original.name="Parsing_Invalid_31"
======
>>> main.whiley
method m() :
    int b = 1

public export method test() :
    int a1 = m()
    int a2 = m()+1
    int[] a3 = [m()]

---
E400 main.whiley 5,13:15
E400 main.whiley 6,13:15
E400 main.whiley 7,16:18