Iterable of Test.
Test
const tests: Tests<number> = [ { given: "a number", must: "make it double", received: () => double(2), wanted: () => 4, }];
Iterable of
Test
.Example