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

  • Home
  • SEARCH
  • 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

In my project I have to do some repository setup before all tests. This
I would like to migrate all my unit tests from NUnit to MSTest. In
I'd like to execute all tests in a /test directory without using annotations such
i am trying to execute all tests in subfolders of my test directory. This
I need run all tests from my multimodule project using IDE. Like I do
while all tests complete without errors and fixtures are actually loaded. Is it Django
Autotest will rerun all tests every time my tests start passing when they were
Let me describe a simple use-case: Running all tests in our project may take
Error in Rails Tutorial (Hartl) v3.2 I'm on chapter 8 and all tests pass
I have created many TestProjects with Visual-Studio-2010 Ultimate . All tests were executed successfully

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.