Skip to content

Commit cce26a1

Browse files
committed
update imports
1 parent b08c459 commit cce26a1

4 files changed

Lines changed: 15 additions & 10 deletions

File tree

src/test/java/com/google/gcloud/datastore/ListValueTest.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@
1616

1717
package com.google.gcloud.datastore;
1818

19+
import static junit.framework.TestCase.assertFalse;
20+
import static org.junit.Assert.assertEquals;
21+
import static org.junit.Assert.assertTrue;
22+
1923
import com.google.common.collect.ImmutableList;
24+
2025
import org.junit.Test;
2126

2227
import java.util.List;
2328

24-
import static junit.framework.TestCase.assertFalse;
25-
import static org.junit.Assert.assertEquals;
26-
import static org.junit.Assert.assertTrue;
27-
2829
public class ListValueTest {
2930

3031
private static final List<Value<?>> CONTENT = ImmutableList.of(NullValue.of(), StringValue.of("foo"));

src/test/java/com/google/gcloud/datastore/ProjectionEntityTest.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
package com.google.gcloud.datastore;
22

3-
import org.junit.Test;
4-
5-
import static junit.framework.TestCase.*;
3+
import static junit.framework.TestCase.assertEquals;
4+
import static junit.framework.TestCase.assertFalse;
5+
import static junit.framework.TestCase.assertNull;
66
import static org.junit.Assert.assertArrayEquals;
77
import static org.junit.Assert.assertTrue;
88

9+
import org.junit.Test;
10+
911
public class ProjectionEntityTest {
1012

1113
private static final Key KEY = Key.builder("ds1", "k1", "n1").build();

src/test/java/com/google/gcloud/datastore/RawValueTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616

1717
package com.google.gcloud.datastore;
1818

19-
import com.google.api.services.datastore.DatastoreV1;
20-
import org.junit.Test;
21-
2219
import static junit.framework.TestCase.assertFalse;
2320
import static org.junit.Assert.assertEquals;
2421
import static org.junit.Assert.assertTrue;
2522

23+
import com.google.api.services.datastore.DatastoreV1;
24+
25+
import org.junit.Test;
26+
2627
public class RawValueTest {
2728

2829
private static final DatastoreV1.Value CONTENT = StringValue.of("hello").toPb();

src/test/java/com/google/gcloud/datastore/ValueTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.google.common.collect.ImmutableMap;
2626
import com.google.common.primitives.Primitives;
2727
import com.google.gcloud.datastore.Value.Type;
28+
2829
import org.junit.Before;
2930
import org.junit.Test;
3031

0 commit comments

Comments
 (0)