File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed
main/java/org/skyscreamer/jsonassert
test/java/org/skyscreamer/jsonassert Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 11package org .skyscreamer .jsonassert ;
22
3- import java .util .ArrayList ;
4- import java .util .HashMap ;
5- import java .util .HashSet ;
6- import java .util .Iterator ;
7- import java .util .List ;
8- import java .util .Map ;
9- import java .util .Set ;
10- import java .util .TreeSet ;
11-
123import org .apache .commons .collections .CollectionUtils ;
134import org .json .JSONArray ;
145import org .json .JSONException ;
156import org .json .JSONObject ;
167
8+ import java .util .*;
9+
1710/**
1811 * Provides the logic to compare two JSON entities. This is the backend to {@link JSONAssert}, but it can
1912 * be programmed against directly to access the functionality. (eg, to make something that works with a
Original file line number Diff line number Diff line change 11package org .skyscreamer .jsonassert ;
22
3- import static org .skyscreamer .jsonassert .JSONCompareMode .LENIENT ;
4- import static org .skyscreamer .jsonassert .JSONCompareMode .STRICT ;
5-
63import org .json .JSONException ;
74import org .junit .Assert ;
85import org .junit .Test ;
96
7+ import static org .skyscreamer .jsonassert .JSONCompareMode .*;
8+
109/**
1110 * Unit tests for {@link JSONAssert}
1211 */
You can’t perform that action at this time.
0 commit comments