shikeying
2024-02-23 1d6e7763f4a30272cc0818ea12f83697b7375c45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iplatform;
 
import com.iplatform.tcp.WebsocketClientTest;
 
/**
 * Unit test for simple App.
 */
public class AppTest
{
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
        WebsocketClientTest test = new WebsocketClientTest();
        test.createBatch();
    }
}