Best Jmock-library code snippet using org.jmock.test.acceptance.WarnAboutMultipleThreadsAcceptanceTests.ThreadFactory
Source:WarnAboutMultipleThreadsAcceptanceTests.java
...3import java.lang.Thread.UncaughtExceptionHandler;4import java.util.concurrent.BlockingQueue;5import java.util.concurrent.Executors;6import java.util.concurrent.LinkedBlockingQueue;7import java.util.concurrent.ThreadFactory;8import org.hamcrest.Matchers;9import org.jmock.Expectations;10import org.jmock.Mockery;11import org.jmock.lib.concurrent.Blitzer;12import junit.framework.TestCase;13@SuppressWarnings({"ThrowableResultOfMethodCallIgnored"})14public class WarnAboutMultipleThreadsAcceptanceTests extends TestCase {15 BlockingQueue<Throwable> exceptionsOnBackgroundThreads = new LinkedBlockingQueue<Throwable>();16 private ThreadFactory exceptionCapturingThreadFactory = new ThreadFactory() {17 public Thread newThread(Runnable r) {18 Thread t = new Thread(r);19 t.setUncaughtExceptionHandler(new UncaughtExceptionHandler() {20 public void uncaughtException(Thread t, Throwable e) {21 try {22 exceptionsOnBackgroundThreads.put(e);23 } catch (InterruptedException e1) {24 throw new ThreadDeath();25 }26 }27 });28 return t;29 }30 };31 Blitzer blitzer = new Blitzer(1, Executors.newFixedThreadPool(1, exceptionCapturingThreadFactory));32 public void testKillsThreadsThatTryToCallMockeryThatIsNotThreadSafe() throws InterruptedException {33 Mockery mockery = new Mockery();34 35 final MockedType mock = mockery.mock(MockedType.class, "mock");36 37 mockery.checking(new Expectations() {{38 allowing (mock).doSomething();39 }});40 41 blitzer.blitz(new Runnable() {42 public void run() {43 mock.doSomething();44 } 45 });...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!