void reportScreenshot()

in src/main/java/com/microsoft/appcenter/appium/EventReporter.java [68:76]


    void reportScreenshot(String screenshotPath, int screenshotOrientation, boolean screenshotRotated) {
        try {
            int run = getRun(lastDescription);
            Event event = Event.createScreenshot(screenshotId(), lastDescription.getMethodName(), lastDescription.getClassName(), run, screenshotPath, screenshotOrientation, screenshotRotated);
            commit(event);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }