Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RussellCollins/8ea6cb47078bcbbb99dd to your computer and use it in GitHub Desktop.
Save RussellCollins/8ea6cb47078bcbbb99dd to your computer and use it in GitHub Desktop.
package com.factorypatterndemo.utils.interfaces;
import java.io.IOException;
import java.util.Calendar;
import com.android.uiautomator.core.UiObjectNotFoundException;
public interface SystemUiDateTimeViewHelperInterface {
void setSystemTime(Calendar calendar) throws UiObjectNotFoundException, IOException;
void resetAutomaticDateAndTime() throws UiObjectNotFoundException, IOException;
void setSystemDate(Calendar calendar) throws UiObjectNotFoundException, IOException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment