|
15 | 15 | */ |
16 | 16 | package com.rusticisoftware.tincan; |
17 | 17 |
|
18 | | -import lombok.extern.java.Log; |
19 | | -import org.joda.time.DateTime; |
20 | | -import org.joda.time.Duration; |
21 | | -import org.joda.time.Period; |
22 | | -import org.junit.Assert; |
23 | | -import org.junit.BeforeClass; |
24 | | -import org.junit.Test; |
25 | | - |
26 | | -import com.rusticisoftware.tincan.v095.StatementsQuery_V095; |
27 | | - |
28 | 18 | import java.io.IOException; |
29 | 19 | import java.io.InputStream; |
30 | 20 | import java.net.MalformedURLException; |
31 | 21 | import java.net.URI; |
32 | 22 | import java.net.URISyntaxException; |
33 | | -import java.net.URL; |
34 | 23 | import java.util.ArrayList; |
35 | 24 | import java.util.List; |
36 | 25 | import java.util.Properties; |
37 | 26 |
|
| 27 | +import lombok.extern.java.Log; |
| 28 | + |
| 29 | +import org.joda.time.DateTime; |
| 30 | +import org.junit.Assert; |
| 31 | +import org.junit.BeforeClass; |
| 32 | +import org.junit.Test; |
| 33 | + |
| 34 | +import com.rusticisoftware.tincan.v10x.StatementsQuery; |
| 35 | + |
38 | 36 | @Log |
39 | 37 | public class RemoteLRSTest { |
40 | 38 | private static final Properties config = new Properties(); |
@@ -280,7 +278,9 @@ public void testQueryStatementsNull() throws Exception { |
280 | 278 | public void testQueryStatements_V095() throws Exception { |
281 | 279 | RemoteLRS obj = getLRS(TCAPIVersion.V095); |
282 | 280 |
|
283 | | - StatementsQuery_V095 query = new StatementsQuery_V095(); |
| 281 | + com.rusticisoftware.tincan.v095.StatementsQuery query; |
| 282 | + query = new com.rusticisoftware.tincan.v095.StatementsQuery(); |
| 283 | + |
284 | 284 | query.setSince(new DateTime("2013-03-13T14:17:42.610Z")); |
285 | 285 | //query.setLimit(3); |
286 | 286 | query.setActor(mockAgent()); |
|
0 commit comments