Skip to content

Instantly share code, notes, and snippets.

@stoichoandreev
Created April 28, 2021 12:39
Show Gist options
  • Save stoichoandreev/26f8fa3561d36e151628f1d8252932c1 to your computer and use it in GitHub Desktop.
Save stoichoandreev/26f8fa3561d36e151628f1d8252932c1 to your computer and use it in GitHub Desktop.
/**
* Each test Robot in our application (UI test Robot or Unit test Robot) should extend BaseRobot
*/
open class BaseRobot {
/**
* Use the method to setup stuff in your Robot class before each test run
*/
open fun setup() {
//no base implementation
}
open fun tearsDown() {
//no base implementation
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment