File tree 3 files changed +20
-2
lines changed
src/test/java/com/epam/deltix/util/archive
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dependencies {
17
17
implementation group : ' com.epam.deltix' , name : ' dfp' , version : dfpVersion
18
18
implementation group : ' com.epam.deltix' , name : ' gflog-api' , version : gflogVersion
19
19
20
- testImplementation ' commons-collections:commons-collections:3.2.1 '
20
+ testImplementation ' commons-collections:commons-collections:3.2.2 '
21
21
}
22
22
23
23
ext {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies {
13
13
implementation ' com.epam.deltix:thread-affinity:1.0.4'
14
14
15
15
implementation ' org.apache.commons:commons-lang3:3.7'
16
- implementation ' org.apache.commons:commons-compress:1.19 '
16
+ implementation ' org.apache.commons:commons-compress:1.26.0 '
17
17
18
18
implementation ' javax.xml.bind:jaxb-api:2.2.8'
19
19
implementation ' com.sun.xml.bind:jaxb-impl:2.3.0'
Original file line number Diff line number Diff line change
1
+ package com .epam .deltix .util .archive ;
2
+
3
+ import com .epam .deltix .qsrv .util .archive .DXDataInputStream ;
4
+ import org .junit .Test ;
5
+
6
+ import java .io .File ;
7
+ import java .io .IOException ;
8
+
9
+ public class Test_DXData {
10
+
11
+ @ Test
12
+ public void test () throws IOException {
13
+
14
+ File file = File .createTempFile ("X31" , "dxdata" );
15
+
16
+ DXDataInputStream in = new DXDataInputStream (file );
17
+ }
18
+ }
You can’t perform that action at this time.
0 commit comments