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
18
original.name="Template_Valid_59"
whiley.compile.ignore=true
WhileyCompiler.issue=1003
======
>>> main.whiley
type Option<T> is null | { T item }
type OboolOint is Option<bool>|Option<int>

public export method test():
    OboolOint x = (Option<int>) null
    //
    assume (x is Option<int>)
    //
    x = (Option<bool>) null
    //
    assume (x is Option<bool>)
    
---