TDD (test driven development) and BDD (behavior driven development) are unique software development techniques that differ in what they are testing and how they are testing it. Despite their similar names, they serve distinct purposes. What Is TDD? TDD stands for test...
Plan your first test
Required time: 3 minutes
Planning
To plan the test we’re going to create in this guide, we’ll ask ourselves the following questions. These also apply when you create more complex tests.
- What do we want to test?
- How can we test it?
What do we want to test?
In this guide, we’ll test the Ranorex Studio Demo Application, a simple program to support you in learning how to work with Ranorex Studio.
Demo Application download
/Downloads/
folder of your system.Demo application start page
How can we test it?
To test the behavior described above, our test will need to include the following actions:
- Start the application
- Click in the text box
- Enter “Harry” in the text box
- Click Submit
- Verify that the text is displayed in the welcome message
- Close the application
The test is successful if the submitted name appears in the welcome message.