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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:54:02+00:00 2026-06-05T18:54:02+00:00

As in the title, I want to test a method like this: public void

  • 0

As in the title, I want to test a method like this:

public void startThread()
{
    new Thread()
    {
        public void run()
        {
            myLongProcess();
        }
    }.start();
}

EDIT:
Judging by comments I guess it is not very common to test if a thread starts or not. So I’ve to adjust the question… if my requirement is 100% code coverage do I need to test if that thread starts or not? If so do I really need an external framework?

  • 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-06-05T18:54:04+00:00Added an answer on June 5, 2026 at 6:54 pm

    This can be done elegantly with Mockito. Assuming the class is named ThreadLauncher you can ensure the startThread() method resulted in a call of myLongProcess() with:

    public void testStart() throws Exception {
        // creates a decorator spying on the method calls of the real instance
        ThreadLauncher launcher = Mockito.spy(new ThreadLauncher());
    
        launcher.startThread();
        Thread.sleep(500);
    
        // verifies the myLongProcess() method was called
        Mockito.verify(launcher).myLongProcess();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following XML <title> This is a <highlight>test</highlight> thanks. </title> and want
I have a code like this <html> <head>Title <script> function callme() { alert(Hi); document.test.action
Let say I've this URL: http://example.com/image-title/987654/ I want to insert download to the part
The class I want to test is my ArticleManager class, specifically the LoadArticle method:
I want to test a Grails controller which calls a service. I'd like to
My form is like this class SubmitForm(forms.Form): title = forms.CharField(max_length=100) story = forms.CharField(max_length=3000) #
I'm new to Objective-C and iPhone SDK development. I want to call a method
When i run my features i get this error: undefined method `visit' for #<Cucumber::Rails::World:0x81b17ac0>
As it says in the title i want to populate an Apex report based
As it says in the title I want to have a button/link that when

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.