Created
April 28, 2021 12:39
-
-
Save stoichoandreev/26f8fa3561d36e151628f1d8252932c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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