Categories: TestNG Tutorials

TestNG Tutorials 36: Can a Test Method Return a Value in TestNG?

Hello Folks,

This is also an interview question. These questions are asked to know how much you can think on a scenario.

Question was, “Can a test method return a value? If yes, how can you use it?”.

Yes, a @Test annotated method can return a value but that method will not be considered as a test method for TestNG anymore i.e. TestNG will ignore that method. Let’s see an example:

Output:

Ofcourse, you can call @Test method inside another @Test method as below and can use returned value. But here @Test annotated method will be same as normal method as TestNG will not consider that and run by default.

Output:

Since TestNG follows best practices for unit testing, which means a unit test method should not have a return value. This is the reason a @Test annotated method which is returning a value is ignored by TestNG default run behaviour.

But you can force TestNG to include test methods which are returning values to be included in normal run. You need to set allow-return-values as true at suite level.  Update your testng xml as below:

Now run it and see output:

You can see TestNG included @Test method which is returning values. Not here that returned value is ignored here.

Where we can use this concept?

TestNG is a testing framework which can be used by both developers and testers. This concept can be used when you need to inherit an interface or abstract class and test its methods without changing method signatures.

More about TestNG in upcoming posts. Stay tuned.

If you have any doubt, feel free to comment below.
If you like my posts, please like, comment, share and subscribe.
#ThanksForReading
#HappySelenium

Author: Amod Mahajan

My name is Amod Mahajan and I am an IT employee with 4+ years of experience in Software testing and staying in Bengaluru. My area of interest is Automation testing. I started from basics and went throw so many selenium tutorials. Thanks to Mukesh Otwani as his tutorials are easy and cover basics to advance. I have habit of exploring concepts by deep diving. I used to make notes. I thought of sharing my knowledge through posts and now I am here. #KeepLearning #ShareLearning

Amod Mahajan

My name is Amod Mahajan and I am an IT employee with 4+ years of experience in Software testing and staying in Bengaluru. My area of interest is Automation testing. I started from basics and went throw so many selenium tutorials. Thanks to Mukesh Otwani as his tutorials are easy and cover basics to advance. I have habit of exploring concepts by deep diving. I used to make notes. I thought of sharing my knowledge through posts and now I am here. #KeepLearning #ShareLearning

Recent Posts

How Much Java Required For Selenium?

"How much Java I need to learn for selenium with Java binding?" is mostly asked question by a Professional who…

4 hours ago

How To Verify If An Input Box Accepts Only Numbers Through Selenium

Hello Guys, You should not be able to type alphabets or special characters in a field which supposed to accept…

5 hours ago

How To Verify Maximum Character Limit of an Input Box Through Selenium

Hello Folks, Recently a guy asked me this question which he was asked in an interview in IBM. What the…

19 hours ago

API Testing Tutorial Part 15 – Sending GET Request With Params in Postman

Hello Folks, As part of our API Testing series, we will see “Sending GET request with params in Postman”. In last…

4 days ago

TestNG Tutorials 62: Dependency in TestNG – Types of Dependencies in TestNG

We have learnt in previous posts regarding establishing relationship between test methods. You can go through them below: Dependency in…

7 days ago

TestNG Tutorials 61: Dependency in TestNG – Creating Dependency Among Test Methods – DependsOnGroup

In previous post, We have learnt to Establish dependency among test methods. In this post, we will see another concept…

7 days ago