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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:28:19+00:00 2026-05-10T20:28:19+00:00

I’ve got a few methods that should call System.exit() on certain inputs. Unfortunately, testing

  • 0

I’ve got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn’t seem to help, since System.exit() terminates the JVM, not just the current thread. Are there any common patterns for dealing with this? For example, can I substitute a stub for System.exit()?

The class in question is actually a command-line tool which I’m attempting to test inside JUnit. Maybe JUnit is simply not the right tool for the job? Suggestions for complementary regression testing tools are welcome (preferably something that integrates well with JUnit and EclEmma).

  • 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. 2026-05-10T20:28:20+00:00Added an answer on May 10, 2026 at 8:28 pm

    Indeed, Derkeiler.com suggests:

    • Why System.exit() ?

      Instead of terminating with System.exit(whateverValue), why not throw an unchecked exception? In normal use it will drift all the way out to the JVM’s last-ditch catcher and shut your script down (unless you decide to catch it somewhere along the way, which might be useful someday).

      In the JUnit scenario it will be caught by the JUnit framework, which will report that such-and-such test failed and move smoothly along to the next.

    • Prevent System.exit() to actually exit the JVM:

      Try modifying the TestCase to run with a security manager that prevents calling System.exit, then catch the SecurityException.

    public class NoExitTestCase extends TestCase  {      protected static class ExitException extends SecurityException      {         public final int status;         public ExitException(int status)          {             super("There is no escape!");             this.status = status;         }     }      private static class NoExitSecurityManager extends SecurityManager      {         @Override         public void checkPermission(Permission perm)          {             // allow anything.         }         @Override         public void checkPermission(Permission perm, Object context)          {             // allow anything.         }         @Override         public void checkExit(int status)          {             super.checkExit(status);             throw new ExitException(status);         }     }      @Override     protected void setUp() throws Exception      {         super.setUp();         System.setSecurityManager(new NoExitSecurityManager());     }      @Override     protected void tearDown() throws Exception      {         System.setSecurityManager(null); // or save and restore original         super.tearDown();     }      public void testNoExit() throws Exception      {         System.out.println("Printing works");     }      public void testExit() throws Exception      {         try          {             System.exit(42);         } catch (ExitException e)          {             assertEquals("Exit status", 42, e.status);         }     } } 

    Update December 2012:

    Will proposes in the comments using System Rules, a collection of JUnit(4.9+) rules for testing code which uses java.lang.System.
    This was initially mentioned by Stefan Birkner in his answer in December 2011.

    System.exit(…) 

    Use the ExpectedSystemExit rule to verify that System.exit(…) is called.
    You could verify the exit status, too.

    For instance:

    public void MyTest {     @Rule     public final ExpectedSystemExit exit = ExpectedSystemExit.none();      @Test     public void noSystemExit() {         //passes     }      @Test     public void systemExitWithArbitraryStatusCode() {         exit.expectSystemExit();         System.exit(0);     }      @Test     public void systemExitWithSelectedStatusCode0() {         exit.expectSystemExitWithStatus(0);         System.exit(0);     } } 

    2023: Emmanuel Bourg reports in the comments:

    For this to work with Java 21 this system property must be set -Djava.security.manager=allow

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

Sidebar

Ask A Question

Stats

  • Questions 88k
  • Answers 88k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You can map the opening brace to your liking: :imap… May 11, 2026 at 5:39 pm
  • Editorial Team
    Editorial Team added an answer I found a clean way to do this. Basically I… May 11, 2026 at 5:39 pm
  • Editorial Team
    Editorial Team added an answer Are you actually saving the state of your panel (the… May 11, 2026 at 5:39 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.