Package org.apache.tuscany.sca.core.work.impl

Examples of org.apache.tuscany.sca.core.work.impl.ThreadPoolWorkManager$DecoratingWork


    /**
     * Setup the ThreadPoolWorkManager
     */
    @BeforeClass
    public static void setup() {
        workManager = new ThreadPoolWorkManager(10);
    }
View Full Code Here


     */
    @Test
    public void testThreadPoolWorkManagerLessThan1Size() {
        for (int i = 0; i >= -10; i--) {
            try {
                new ThreadPoolWorkManager(i);
                Assert.fail("Should have thrown IllegalArgumentException");
            } catch (IllegalArgumentException ex) {
                Assert.assertTrue(ex.toString().indexOf(Integer.toString(i)) != -1);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.core.work.impl.ThreadPoolWorkManager$DecoratingWork

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.