export default (options?: ITestModel) => {
    options = options || {};
    const calculatedArgs = testArgBuilder(options);
    return shelly("dotnet", "test", calculatedArgs, options.echo || false) as stream.Transform;