I know Eclipse provides means to run a single JUnit 4 test method separatly (see Running a single JUnit test in Eclipse).
Now, I wonder whether there is a way to run a single test method for a given concrete class when the class does not contain the method but instead inherits it from an abstract base class.
This works fine, the difficulty is selecting the method.
If you try and run the whole suite of tests, and then right click on the test you want in the "JUnit" view, then click "Run", it will run just that test.
If you then look in your "Run Configurations" you will see it has created a run configuration which relates to a single test which you can re-run whenever needed.
Alternatively, you can open the "Run Configurations" dialog, and create a new "Junit" run configuration, which gives you the option to configure a "single test" run - you can then select the correct project, class and method for your test.