Package com.indeed.proctor.store

Examples of com.indeed.proctor.store.GitProctor


    public static void main(final String[] args) throws IOException, StoreException, IncompatibleTestMatrixException {
        final GitLocalProctorBuilderArgs arguments = new GitLocalProctorBuilderArgs();
        arguments.parse(args);

        try {
            GitProctor proctor = new GitProctor(arguments.getInputGitUrl(), arguments.getUsername(), arguments.getPassword());
            if (arguments.getBranchName() != null && !arguments.getBranchName().isEmpty()) {
                proctor.checkoutBranch(arguments.getBranchName());
            }
            File outputDir = new File(arguments.getOutputdir());
            outputDir.mkdirs();
            File matrixFile = new File(outputDir, arguments.getFilename());
            matrixFile.createNewFile();
View Full Code Here

TOP

Related Classes of com.indeed.proctor.store.GitProctor

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.