Package org.jacorb.test.bugs.bugjac235

Source Code of org.jacorb.test.bugs.bugjac235.NoTimeoutTest

package org.jacorb.test.bugs.bugjac235;

import static org.junit.Assert.assertNotNull;
import org.jacorb.test.harness.ClientServerSetup;
import org.junit.BeforeClass;
import org.junit.Test;

public class NoTimeoutTest extends AbstractTestCase
{
    @BeforeClass
    public static void beforeClassSetUp() throws Exception
    {
        setup = new ClientServerSetup(JAC235Impl.class.getName());

    }

    @Test
    public void testNormalInvocation()
    {
        assertNotNull(server.hello(500));
    }
}
TOP

Related Classes of org.jacorb.test.bugs.bugjac235.NoTimeoutTest

TOP
Copyright © 2018 www.massapi.com. 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.