Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8047909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:15:28+00:00 2026-06-05T06:15:28+00:00

Is there a way to execute several test methods in order using different data

  • 0

Is there a way to execute several test methods in order using different data from the data provider?

e.g.

@DataProvider(name = "test1")
public Object[][] createData1() {
    return new Object[][] {
        { "Cedric", new Integer(36) },
        { "Anne", new Integer(37)}, 
    };
}


@Test(dataProvider = "test1")
public void verifyData1(String n1, Integer n2) {
    System.out.println(n1 + " " + n2);
}

@Test
public void verifyData2() {
    System.out.println("Verify2");
}

And the output of running this would be
Cedric 36
Verify2
Anne 37
Verify2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T06:15:29+00:00Added an answer on June 5, 2026 at 6:15 am

    Here is one way to do it: use an annotation to specify which method should receive which data:

    public class A {
    
      @DataProvider
      public Object[][] dp(Method m) {
        if (m.getAnnotation(Different.class) != null) {
          return new Object[][] {
              new Object[] { "different-a", "different-b" },
              new Object[] { "different-c", "different-d" },
            };
          } else {
            return new Object[][] {
                new Object[] { "c", "d" },
                new Object[] { "a", "b" },
            };
          }
        }
    
      @Test(dataProvider = "dp")
      public void test1(String a, String b) {
        System.out.println("test1: " + a + " " + b);
      }
    
      @Different
      @Test(dataProvider = "dp")
      public void test2(String a, String b) {
        System.out.println("test2: " + a + " " + b);
      }
    }
    

    The annotation:

    @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
    @Target({METHOD})
    public @interface Different {}
    

    The output:

    test1: c d
    test1: a b
    test2: different-a different-b
    test2: different-c different-d
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In php there are several methods to execute a shell command: system() passthru() shell_exec()
Is there a way to execute internal code via reflection? Here is an example
Is there a way to execute a .NET application compiled under AnyCPU as a
Is there a way to execute a JSF managed bean action when a page
Is there any way to execute arbitrary code in Flash, like javascript's eval()? I'd
Is there a way to Execute a custom program before InstallaWare removes the previous
Is there a way to execute cURL requests through a VPN such as OpenVPN
I am wondering is there any way to execute following shell script, which waits
I remember there was a way to execute the cd command, automatically returning to
Is there some clean and elegant way to execute my code right after a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.