Searched refs:testCaseThread (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLuceneTestCase.java395 volatile Thread testCaseThread; field in class:LuceneTestCase
397 /** @see #testCaseThread */
404 LuceneTestCase.this.testCaseThread = Thread.currentThread();
407 LuceneTestCase.this.testCaseThread = null;
476 assertNotNull("Test case thread not set?", testCaseThread);
477 return Thread.currentThread() == testCaseThread;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLuceneTestCase.java491 volatile Thread testCaseThread; field in class:LuceneTestCase
494 * @see LuceneTestCase#testCaseThread
506 LuceneTestCase.this.testCaseThread = current;
510 LuceneTestCase.this.testCaseThread.setName(previousName);
511 LuceneTestCase.this.testCaseThread = null;
611 assertNotNull("Test case thread not set?", testCaseThread);
612 return Thread.currentThread() == testCaseThread;

Completed in 18 milliseconds