Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. package com.jsoniter;
  2.  
  3. import com.jsoniter.output.JsonStream;
  4. import org.junit.Test;
  5.  
  6. import java.util.Collections;
  7.  
  8. public class MyTest {
  9.  
  10. @Test
  11. public void testOrdinal() {
  12. JsonIterator.deserialize(JsonStream.serialize(Collections.emptyMap()));
  13. }
  14.  
  15. @Test
  16. public void testStream() {
  17. JsonIterator.enableStreamingSupport();
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement