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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:44:52+00:00 2026-05-14T19:44:52+00:00

All of my tests for my Groovy code look like this public void testButtons()

  • 0

All of my tests for my Groovy code look like this

public void testButtons() {
    try {
         page.getButtons();
    } catch (Exception e) {
         throw org.codehaus.groovy.runtime.StackTraceUtils.sanitize(e);     
    }
}

because I need to sanitize any possible StackTrace that appears (otherwise it’s very hard to read since it’s got all the Groovy meta-code). Is there any way to specify that all JUnit tests get wrapped in particular way (like an error handler)?

Note: I am running these in Eclipse, but if there’s a way to do this in IntelliJ or Netbeans, that would be good to know.

  • 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-14T19:44:52+00:00Added an answer on May 14, 2026 at 7:44 pm

    Yes, use a Rule. Basically you have to have a class which implements the MethodRule interface that handles the exception handling in the apply method by substituting its own Statement implementation that has the try/catch in it.

    To use a rule you define a field in the test class like so:

      @Rule public MethodRule exceptionCleanser = new ExceptionCleanser();
    

    A first cut implementation would probably look something like this:

      public class ExceptionCleanser implements MethodRule {
    
          public Statement apply(final Statement base, FrameworkMethod method, Object target) {
              return new Statement() {
                   public void evaluate() throws Throwable {
                     try {
                        base.evaluate();
                     } catch (Exception e) {
                           throw org.codehaus.groovy.runtime.StackTraceUtils.sanitize(e);     
                     }
                   }
              };
          }
      }
    

    The above is totally untested, but you should be able to get the idea. The @Rule annotation was introduced in JUnit 4.7, so you may need to update to use it.

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

Sidebar

Related Questions

i am trying to execute all tests in subfolders of my test directory. This
General Follow the same standards for all tests. Be clear about what each test
I use phpUnit on a integration server to run all tests and if I
Currently, I am splitting all my tests by package (projects). So if I have
I am inside the IDE and I can run all the unit tests in
I'm working on a Spring MVC project, and I have unit tests for all
We put all of our unit tests in their own projects. We find that
Unit tests are cheaper to write and maintain, but they don't cover all scenarios.
I'm implementing unit tests for a family of functions that all share a number
When I run my tests in Visual Studio individually, they all pass without 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.