testcall 0.6.0

companinon crate to bintest, implements test facilities
Documentation
Companinon crate to ‘BinTest’, implements test facilities

# Description

A TestCall uses BinTest and std::process::Command to wrap process execution in a way that is
ergonomic to use for (repeated) testing. Few more test facilities are provided and will grow
in future.

# Example

```rust
#[test]
fn myprogram_test() {
    let executables = BinTest::new();
    let mut myprogram = TestCall::new(&executables, "myprogram");

    myprogram
        .call(["--help"])
        .assert_success();
}
```

# Future Plans

New features will be added as needed, PR’s are welcome. This is work in progress.