org.panksdmz.jms.tibco.soapws.TibcoSpringSenderTest.java Source code

Java tutorial

Introduction

Here is the source code for org.panksdmz.jms.tibco.soapws.TibcoSpringSenderTest.java

Source

package org.panksdmz.jms.tibco.soapws;

import org.junit.Test;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;

/*
 * Copyright(c) 2013 Siemens Medical Solutions Health
 * Services Corporation.  All rights reserved.  This software is
 * confidential, proprietary to Siemens, is protected by
 * copyright laws in the U.S. and abroad, and is licensed for use
 * by customers only in strict accordance with the license
 * agreement governing its use.
 */
@ContextConfiguration(locations = "classpath*:META-INF/spring/applicationContext-tibco-soapjms.xml")
public class TibcoSpringSenderTest extends AbstractJUnit4SpringContextTests {

    @Test
    public void test() throws Exception {
        System.out.println("TibcoJMSTest");
        while (Boolean.TRUE) {
            Thread.sleep(100);
        }
    }
}