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 6578301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:45:13+00:00 2026-05-25T15:45:13+00:00

I am trying to bundle my tests in a TestSuite which will pick up

  • 0

I am trying to bundle my tests in a TestSuite which will pick up files from a directory and run each one after loading spring context.

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"/META-INF/spring/context-test.xml"})
public class MyTestCase extends TestCase{

    private String fileName;

    public MyTestCase(String fileName){
        this.fileName = fileName;
    }

    @Resource private Processor processor;

    @Before
public void setup(){
    ...
    }

    @Test
    public void test(){
    Read file and run test..
    ...
    }

}

If I do this, it doesn’t recognize spring annotations

public class MyTestSuite extends TestCase{

    public static Test suite(){
        TestSuite suite = new TestSuite();
        suite.addTest(new MyTestCase("file1"));
        suite.addTest(new MyTestCase("file2"));
        return suite;
    }
}

I looked it up and found: Spring 3+ How to create a TestSuite when JUnit is not recognizing it , which suggests that I should use JUnit4TestAdapter. Problem with JUnitTestAdapter is that it doesn’t allow me to pass in parameters and also would not take MyTestSuite.suite(). I can only do something like:

public class MyTestSuite{

    public static Test suite(){

        return new JUnit4TestAdapter(MyTestCase.class);
    }
}

Your response is highly appreciated.

Thanks

  • 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-05-25T15:45:14+00:00Added an answer on May 25, 2026 at 3:45 pm

    I had to use deprecated AbstractSingleSpringContextTests to achieve this. AbstractSingleSpringContextTests is from the times when TestContext framework was not available.

    public class MyTestCase extends AbstractSingleSpringContextTests {
    
        private String fileName;
    
        public MyTestCase(String fileName){
            this.fileName = fileName;
        }
    
        @Resource private Processor processor;
    
        @Override
        protected void onSetUp(){
    
             initialization code...
    
        }
    
        @Override
        protected String getConfigPath(){
             return "config/File/Path";
        }
    
        @Test
        public void test(){
        Read file and run test..
        ...
        }
    
    }
    
    
    public class MyTestSuite extends TestCase{
    
        public static Test suite(){
            TestSuite suite = new TestSuite();
            suite.addTest(new MyTestCase("file1"));
            suite.addTest(new MyTestCase("file2"));
            return suite;
        }
    }
    

    Its not the best solution, but it works. Please post if you have a better idea.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to populate a directory from the contents of a bundle built into
I'm trying to integrate posting to one's wall from within my app.i try this
I recently started seeing this error message when trying to run any Cucumber tests.
Hi I'm trying to run bundle install on my windows machine it runs fine
i'm trying to run such test: it render form to update an bundle with
I am trying to to build a Felix bundle in Eclipse. This basically includes
I'm trying to create an NSService in a Bundle project. I need to add
I'm trying to draw shapes that will move around the screen using the LunarLander
I am trying to create a ListActivity which its rows contain a text and
I am trying to have name of contacts in one array and their types

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.