Package org.broadinstitute.gatk.engine.io.stubs

Examples of org.broadinstitute.gatk.engine.io.stubs.OutputStreamStub


                new String[] {"dummy.txt"}};
    }

    @Test(dataProvider = "BadOutputPaths", expectedExceptions = UserException.CouldNotCreateOutputFile.class)
    public void testInvalidOutputPath(final String path) {
        tracker.validateOutputPath(new OutputStreamStub(new File(path)));
    }
View Full Code Here


        tracker.validateOutputPath(new OutputStreamStub(new File(path)));
    }

    @Test(dataProvider = "GoodOutputPaths")
    public void testValidOutputPath(final String path) {
        tracker.validateOutputPath(new OutputStreamStub(new File(path)));
    }
View Full Code Here

        tracker.validateOutputPath(new OutputStreamStub(new File(path)));
    }

    @Test
    public void testOutputPathWithNullFile() {
        tracker.validateOutputPath(new OutputStreamStub(System.out));
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.engine.io.stubs.OutputStreamStub

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.