Back to Course
Core Java

Java Methods

What is a Method?

A method is a reusable block of code that performs a specific task, defined with a return type, name, and parameters.

public int add(int a, int b) {
    return a + b;
}

Calling a Method

Once defined, a method is invoked by name with the required arguments: int result = add(2, 3);

Why Methods Matter in Automation

Breaking automation logic into small, well-named methods (e.g., loginAsAdmin(), getAuthToken()) makes test code far easier to read, reuse, and maintain.

Ready to master real-world software testing?

Learn manual and automation testing hands-on with mentor-led sessions.

Explore Course