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
16
17
original.name="Infeasible_Function_5"
js.execute.ignore=true
======
>>> main.whiley
function f() -> (int q)
ensures q >= 0 && q < 0:
    return -1

function g(int x) -> (int y)
ensures y >= 0:
    return x

public export method test():
       f()
---
E701 main.whiley 10,7:9
E717 main.whiley 3,4:12