Testing the build binaries of a bin crate.
'cargo' tests by default have no support for running tests on a build binary. This crate solves this.
There are some problems to overcome the cargo limitations.
BinTest solve these problems by running 'cargo build' at test time, parsing its output for identifying and locating the build binaries. On request it creates a std::process::Command for the binary which can be used for any further testing.