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
js.compile.ignore=true
=====
>>> main.whiley
function setz(int[] items, int x, int y) -> (int[] r)
requires x >= 0 && x < |items|
ensures |r| == |items|
ensures all { i in 0..|items| | i == x || items[i] == r[i] }
ensures r[x] == y:
    return items[x:=y]
    
public export method test():
   int[] xs = [1,2,3]
   assert setz(xs,0,2) == [2,2,3]
   assert setz(xs,1,4) == [1,4,3]
   assert setz(xs,2,123) == [1,2,123]   
---