Archived
0

emdn initial

This commit is contained in:
iMoHax
2014-08-27 17:45:42 +04:00
parent 9d58026568
commit 269869122c
4 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package ru.trader.emdn;
import org.junit.Assert;
import org.junit.Test;
public class EMDNTest extends Assert {
private final static EMDN markettool = new EMDN("tcp://firehose.elite-market-data.net:9050");
@Test
public void testGetData() throws Exception {
markettool.getData();
}
}