forc-test 0.71.0

A library for building and running Sway unit tests within Forc packages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
script;

fn main() {

}

#[test]
fn test_bam() {
  assert(1 == 1)
}

#[test]
fn test_bum() {
  assert(1 == 1)
}