All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.automation.remarks.video.RecordingUtils Maven / Gradle / Ivy

The newest version!
package com.automation.remarks.video;

import java.io.File;
import java.util.LinkedList;

/**
 * Created by sergey on 4/21/16.
 */
public class RecordingUtils {

    private RecordingUtils() {
    }

    public static void doVideoProcessing(boolean successfulTest, LinkedList recordings) {
        if (!successfulTest) {
            System.err.println("Video recording\n" + recordings);
        } else if (recordings.size() > 0) {
            recordings.getFirst().delete();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy