How To Write Test Cases in Java

Vipul Gupta

Posted On: July 8, 2024

view count139060 Views

Read time20 Min Read

Writing test cases is a fundamental skill for ensuring the reliability and robustness of your code. Test cases can help identify bugs and validate that the code works as intended.

Test cases can be written using any programming language like Java, Python, C#, and more. However, many testers prefer writing test cases in Java due to its strong community support and alignment with project needs. Automating these test cases in Java helps testers save execution time and catch errors in the early stages of testing.

What Is a Test Case in Java?

Java is one of the most used programming languages for automation testing. Writing a test case in Java means building an entire automation project that follows and implements OOP concepts. This makes the project and test case more robust, and the whole code is categorized into many classes and methods, making it more maintainable and easy to use.

Automated test cases help to test the feature quickly in case of regression and help save a lot of manual effort. These test cases execute some flow on the webpage and then use asserts to verify if the output matches the desired output.

For example, For the Two Input Fields section on the LambdaTest Selenium Playground page, a few of the test cases would look like the below:

  • Verify all the labels, text input boxes, and buttons are present on the page.
  • text input boxes

  • Verify that the sum is displayed correctly under Result when entering both numbers.
  • displayed correctly

  • Verify that the error message is displayed under Result if one or both numbers are not entered.
  • displayed under Result

While writing test cases in Java, several things need to be considered, like the test flow, the test scope, naming, assertions, test data, grouping, locating WebElements, etc. When used accurately, all these make a good test case that is easy to understand and maintain in the future as more changes come.

However, the initial action to start with the test flow is to locate a WebElement for which you must write an effective test case in Java.

Info Note

Run your test cases across 3000+ browsers and OS combinations. Try LambdaTest Today!

Locating WebElements in Java

Another thing to learn about writing test cases in Java is locating the WebElements. This is required as the test case flow will interact with these WebElements to perform actions like entering data, clicking a button, retrieving data, etc., to get the results. There are multiple ways to find the WebElement locators in Selenium, such as ID, Name, CSS, XPath, linkText, etc.

Before demonstrating how to write test cases in Java, let’s learn how different WebElements used in the test flow can be located using their locator strategies. We will use XPath or ID locators to locate all the WebElements for this test case.

You can use one of the most common methods to find elements, i.e., findElement() in Selenium.

Selenium

  1. To locate the Two Input Fields label from the LambdaTest Selenium Playground page using XPath, you can use the following XPath expression:
  2. To locate the Enter first value label from the LambdaTest Selenium Playground page using XPath, you can use the following XPath expression:
  3. To locate the Enter second value label from the LambdaTest Selenium Playground page using XPath, you can use the following XPath expression:
  4. To locate the Get Sum button from the LambdaTest Selenium Playground page using XPath, you can use the following XPath expression:
  5. To locate the First value textbox from the LambdaTest Selenium Playground page using ID, you can use the following ID expression:
  6. To locate the Second value textbox from the LambdaTest Selenium Playground page using ID, you can use the following ID expression:
  7. To locate the Result label from the LambdaTest Selenium Playground page using ID, you can use the following ID expression:
  8. To locate the Result/Error Message from the LambdaTest Selenium Playground page using ID, you can use the following ID expression:

You can also refer to this Selenium locator guide to learn how to locate WebElements when writing test cases in Java.

Web Element Locators Explained By Louise J Gibbs

By Louise J Gibbs

How To Write a Test Case in Java?

Before writing an effective test case in Java, you must set up the project with all the required libraries and tools. We will use Eclipse IDE to demonstrate the setup for a Maven project. Additionally, we will add TestNG as the testing framework to handle test execution and implement setup and teardown methods.

In this demonstration, we will initially write 3 test cases to cover all the test cases in Java mentioned and implement all the best practices as applicable.

Test Scenario 1:

  1. Navigate to the Two Input Fields section on the Selenium Playgrounds (Simple Form Demo)
  2. Assert all the WebElement of this section for visibility
    • Identify the locator for the Two Input Fields label.
    • Identify the locator for the first and second value labels.
    • Identify the locator for the first and second value input boxes.
    • Identify the locator for the Get Sum button.
    • Result label.

Test Scenario 2 :

  1. Navigate to the Two Input Fields section on the Selenium Playgrounds (Simple Form Demo) page.
  2. Enter valid values in both input boxes.
  3. Click on the Get Sum button.
  4. Assert the sum is correct and displayed under the Result label.

Test Scenario 3 :

  1. Navigate to the Two Input Fields section on the Selenium Playgrounds (Simple Form Demo) page.
  2. Enter the value in any one of the input boxes.
  3. Click on the Get Sum button.
  4. The assert error message is displayed under the Result label.

Let’s start installing the necessary libraries as we have the test flow in place and are ready to use the tools and libraries.

Project Setup:

As mentioned, we will use Eclipse IDE to write the test case in Java. However, you can use any IDE to write the test cases. You just need to create a new Maven project.

  1. Launch Eclipse IDE and open the New Project wizard by clicking File > New > Project.
  2. Under Wizards, expand Maven, select Maven Project, and click Next.
  3. Click on Create a simple project checkbox and click on Next.
  4. On this New Maven Project wizard, enter the Group Id and Artifact Id and click on Finish to create your project. Here, Group Id is the unique name that helps identify one project group from another, and Artifact Id is the unique name given to the project we will create.

Once the project is created, the project structure will include a pom.xml file in the root folder. Here, we will add the dependencies needed to write and execute automation test cases in Java. We will add its dependency since we will use TestNG as the testing framework. Additionally, we will add the Selenium dependency, as the test case we will write involves web automation.

You can fetch the latest TestNG and Selenium dependencies from the Maven Repository.

The updated pom.xml would look like the one below.

The next step is to add the test class files where we will write the test case in Java. Add 2 Java class files under src/test/java package.

  • BaseTest.java: This file will have the setup() and tearDown() methods to create and remove the WebDriver instances for test cases.
  • TwoInputFieldTests.java: This file will be the test class file where all the test cases discussed above will be written.

The completed BaseTest.java would look like the one below.

Code Walkthrough:

Below is the complete code walkthrough to understand the code written in the above BaseTest.java file.

  1. In this class, create a WebDriver instance, which will be used to interact with the browser, then create the first method as setup() and annotate it with the @BeforeMethod. @BeforeMethod is a TestNG annotation. This annotation helps invoke this method before executing each test method, i.e., each test case. This will help create a new WebDriver instance for each test case in Java and navigate to the website.
  2.  test case in Java

  3. Initialize the driver variable with the ChromeDriver() class. This will execute all the test cases in Java on the Chrome browser.
  4. ChromeDriver

  5. Use the get() method of Selenium WebDriver to navigate to the test webpage on LambdaTest Playground.
  6. Selenium WebDriver

  7. Add the next method, tearDown(), and annotate it with @AfterMethod annotation to execute it after each test case in Java is executed. @AfterMethod is called the quit() method, which quits the driver instance and closes the open browser windows.
  8. open browser windows

With this, the BaseTest file is created, and we are ready to create a test file to run the test case in Java.

Create a file called TwoInputFieldTests.java. This file will contain all the code for the test scenarios discussed earlier.

Code Walkthrough:

Below is the complete code walkthrough to understand the code written in the above TwoInputFieldTests.java file.

  1. Add a new class file as TwoInputFieldTests.java and extend BaseTest. This helps to inherit and access the driver variable and methods of the base class in all the test cases and prevents redundant code.
  2.  test cases and prevents

  3. Add the first test case as shouldVerifyAllElementsWhenThePageIsLoaded() and annotate it with the @Test annotation. This annotation helps to identify a method as a test case and execute it as a TestNG case. We have used the groups attribute of @Test annotation here to mark this test as part of the uiTests group so that it gets executed whenever these group cases are triggered.
  4.  triggered

  5. In this test case, we verify if all the Two Input Fields section elements are displayed when the web page is loaded.
  6. Two Input Fields

  7. For this, we use the isDisplayed() method of WebElement to check whether the element is displayed. This returns a boolean true value if the element is displayed and false if not.
  8. assertTrue()

  9. To assert the same, we use the assertTrue() method of the Assert class. It passes if the passed value is true, meaning the element is displayed.
  10. automation testing

    Assertions are crucial in the automation testing process, ensuring the software functions as expected. To learn assertTrue(), follow this guide on assertTrue() in Java and gain valuable insights.

  11. Write a similar assert statement using the isDisplayed() method for all the web elements to verify the entire UI of this section.
  12. TheResult

  13. Add the second test case as shouldReturnTheResultWhenBothNumbersAreValid(). Similar to the previous case, annotate it with the @Test annotation and add it to positiveTest and sanity groups. We have added 2 group names here, unlike 1 in the previous case. This means that this test case in Java will get executed as part of both these groups.
  14. Add the second test case as shouldReturnTheResultWhenBothNumbersAreValid(). Similar to the previous case, annotate it with the @Test annotation and add it to positiveTest and sanity groups. We have added 2 group names here, unlike 1 in the previous case. This means that this test case in  Java will get executed as part of both these groups.

  15. Enter the first and second values using the sendKeys() method. This method of Selenium WebDriver is used to enter data in any input text box field while working with web automation.
  16. web automation

  17. After entering the values, click the Get Sum button to get the result. For this, another method of WebDriver, click() is used.
  18. store it

  19. Finally, we fetch the result using the getText() method and store it in a variable. This method retrieves any text value from the web page using Selenium web automation. Assert’s assertEquals() method compares this value with the expected result.
  20. assertion

    This method is used to compare two values as part of an assertion. Learn how to use asserts in TestNG correctly to help you verify and validate your actual and expected results.

  21. Add the last test case and name it as shouldShowErrorWhenAnyNumberIsMissing(). Like the previous cases, annotate it with @Test and add it to the negativeTest and sanity groups.
  22. entering

  23. Enter any one value using the sendKeys() method. Here, we are entering the first value field.
  24. first value field

  25. Click on the Get Sum button.
  26. assert

  27. Fetch the error message using the getText() method and assert it to be the same as the expected error message using the assertEquals() method.

method

Test Execution And Results

Right-click > Select Run As > TestNG, Test to execute the tests individually.

tests individually

Result:

shouldVerifyAllElementsWhenThePageIsLoaded()

Result

Result:

shouldReturnTheResultWhenBothNumbersAreValid()

shouldReturnThe

Result:
shouldShowErrorWhenAnyNumberIsMissing()

working with up

Running tests locally is manageable when working with up to three or four browsers and one operating system. However, this limitation makes it difficult for testers to conduct tests on more than four browsers and multiple operating systems. To address this, testers can use a cloud-based platform where they do not have to worry about maintaining test infrastructure and can conduct comprehensive cross-browser and cross-platform testing seamlessly. One such platform is LambdaTest.

It is an AI-powered test execution platform that lets you run manual and automated cross-browser testing at scale, with over 3000+ real devices, browsers, and OS combinations.

This platform provides the speed and resources to make test executions faster and more reliable. It facilitates parallel execution, allowing multiple tests to run simultaneously for large automation suites. This cloud grid platform also offers enhanced logging, maintenance, and debugging resources.

Now, let’s move the local test script to the LambdaTest platform with a few modifications to leverage all the features this cloud grid offers.

How To Write a Test Case in Java for Cloud Execution?

Having understood the flow of writing and executing the first test case in Java using Selenium and TestNG, let us move ahead and learn how we can do the same on a cloud grid platform.

To use the LambdaTest cloud grid to run the Selenium automation test cases, we need to make some changes to the code to use Selenium RemoteWebDriver, which will help connect to the LambdaTest cloud grid and execute the cases over there.

Most of these changes involve configuring the WebDriver settings in BaseTest.java. The modified BaseTest.java with the cloud grid integration will look similar to the example below.

Code Walkthrough:

Below is the complete code walkthrough to understand the code written in the above BaseTest.java file.

  1. Start by creating required class objects and variables with public access to access them in the test classes. For this, first, create an object of RemoteWebDriver and initialize it to null.
  2. RemoteWebDriver

  3. Next, add the username and access key for your LambdaTest account to connect to the cloud grid for test execution. You can find these in the Password & Security section tab.
  4.  LambdaTest account

  5. You can also configure these as environment variables and directly fetch them in code instead of defining them in plain text.
  6. For Windows:

    For macOS and Linux:

  7. Add a String variable as status and initialize it with value as failed. Before quitting the driver instance, this variable helps mark the test case’s final status as passed/failed on the LambdaTest dashboard. This value is updated to be passed in the test case if the test passes with no assertion failures or exceptions.
  8. required browser

  9. Update the code inside the setup() method to set the required browser properties and LambdaTest configurations to connect to the cloud grid.
  10. Create an object of the ChromeOptions class and set the OS and browser versions.
  11. browser versions

  12. Next, create a HashMap type variable to specify the additional browser capabilities for the LambdaTest platform. This will help to identify the dashboard test results using the build name and other details.
  13. dashboard test results

    You can fetch the required browser capabilities from the LambdaTest platform by navigating to the Automation Capabilities Generator. This helps by offering ready-to-use code for setting up browser capabilities that can be used in execution.

    ready-to-use code

  14. Finally, use the Selenium RemoteWebDriver to connect to the LambdaTest remote grid using your credentials and ChromeOptions class object containing all specified browser capabilities.
  15. specified browser capabilities

  16. Use this driver to navigate the Two Input Fields page on the LambdaTest Selenium Playground for test execution.
  17. Two Input Fields page

  18. Inside the tearDown() method, add a step to execute the script to update the test case status on the LambdaTest dashboard.
  19.  execute the script

  20. Next, move to the test class TwoInputFieldTests.java and add the step to update the status to passed after the execution of all test cases.
  21.  TwoInputFieldTests

     local execution

    local execution

    Results:

    We can execute the test cases similarly to how we did for local execution. The console output in the IDE will remain unchanged, but the primary focus will shift to monitoring the execution results on the LambdaTest dashboard.

    The execution results are on the LambdaTest Dashboard under the Automation > Web Automation tab.

    LambdaTest Dashboard

    LambdaTest Dashboard

    cloud grid platform supports

    supports automation

    This cloud grid platform supports automation using various automation testing tools like Selenium, Cypress, Playwright, and more. To learn how to conduct automation testing on a Desktop browser, watch the video tutorial below and get detailed insights.

    To get access to more tutorial videos, subscribe to the LambdaTest YouTube Channel and stay ahead with your automation testing journey.

    Best Practices for Writing Test Cases in Java

    All the test executions we’ve learned above are written following best practices. Adhering to these practices helps avoid repeating the same or similar mistakes and ensures a smooth test flow in your automation projects.

    Some of the best practices are given below.

    • Understanding the Requirements
    • The first and foremost requirement of writing a good test case is understanding the changes and features clearly. The tester needs to know what is expected from the code based on the input. We can refer to the product requirement documentation or the acceptance cases to know the expected behavior.

    • Maintainable and Reusable Code
    • The test cases should be readable and follow clean coding principles. This helps to keep test cases maintainable and allows quick refactoring in case of requirement changes without much hassle.

    • Clear and Descriptive Test Case Names
    • The names should be clear and meaningful so that anyone who sees the code or test case can understand what a particular test is supposed to do. The name should be descriptive enough to describe the purpose of the test case. One of the naming conventions one can follow is should[ExpectedResult]When[Condition]. For example, shouldReturnTheResultWhenBothNumbersAreValid or shouldShowErrorWhenAnyNumberIsMissing.

    • Arrange-Act-Assert Structure
    • Try to follow the AAA structure for your test cases for effective test management by splitting it into three parts.

      • Arrange: Define and set up the test environment and test data on which we want to execute the test.
      • Act: Write the execution steps which interact with the feature using the above data.
      • Assert: Write proper assertions which verify the actual and expected results.
    • One Test Case, One Assertion
    • Use specific and meaningful assertions for each test case, which helps to verify the required details. One test should not be used to verify multiple flows and should not have a dependency on any other test case. For example, valid results for valid input and error responses for invalid input should be two separate test cases. You can use assertions like assertEquals(), assertTrue(), assertFalse(), assertNotNull(), etc., to assert to-the-point data and provide meaningful messages to better understand the failures.

    • Using Setup and Teardown Methods
    • Use @Before and @After annotations of JUnit or TestNG, depending on your framework, to write setup and teardown methods. These methods help to prevent duplicity by making the common code, like driver setup, browser launch, driver termination, etc, reusable across all the test cases.

    • Using Mock Data and Stubs for Error Cases
    • Mock data or stubs means to simulate a function behavior in the software to return some particular result as desired by the tester to test some particular test cases. We can use mocking frameworks like Mockito or write a stub function to mock dependencies and verify test cases for external dependency failures.

    • Covering Edge and Boundary Value Cases
    • Write test cases to cover all the edge cases or unusual scenarios due to software or hardware downtimes. You can use mocking for such types of test cases. Also, testing for boundary values by passing various test data helps verify if the code and software function properly for limiting cases.

    • Using Tags, Groups, and Categories
    • Use tags, groups, or categories to group the related test cases together that serve some common purpose, flow, or requirement in general. For instance, you can group all test cases for login flow, positive and negative cases, etc.

    Conclusion

    With this, we have concluded this blog on how to write a test case in Java. In this blog, we learned how a good test case can be written with a basic understanding of Java language and test case fundamentals like flow, assertions, and WeElement locators. We learned the working examples on local and cloud grids and understood how following the best practices makes the test case robust and reliable. Now, it’s time for you to go ahead and try writing your first test case in Java.

    Happy learning!!

    Frequently Asked Questions (FAQs)

    How can I efficiently organize my Java test cases?

    Use a clear folder structure in your project, separating test classes by functionality or module. Utilize test suites for group-related tests and ensure easy management and execution.

    What are some advanced techniques for locating WebElements in Java?

    Apart from basic locators like ID and XPath, you can use CSS Selectors for more complex scenarios. Additionally, leveraging relative locators introduced in Selenium 4, such as above(), below(), toLeftOf(), and toRightOf(), can enhance your element-finding strategies.

    How do I ensure my Java test cases are maintainable?

    Follow good coding practices like using the Page Object Model (POM) to separate test and UI interaction logic. This abstraction makes your tests more readable and easier to maintain when UI changes occur.

    How can I handle dynamic WebElements in Java test cases?

    Use dynamic XPath or CSS Selectors to handle WebElements whose attributes change frequently. Implement waits (explicit, implicit, or fluent) to synchronize your tests with the web application’s state.

Author Profile Author Profile Author Profile

Author’s Profile

Vipul Gupta

Vipul Gupta is a passionate Quality Engineer with 6+ years of experience and keen interest in automation testing of Web and API based applications. He is having experience in designing and maintaining various automation frameworks. Currently working as Sr. SDET, he enjoys reading and learning about new test practices and frameworks.

Blogs: 22



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free