File tree Expand file tree Collapse file tree
branches/tswast-patch-1/src/test/java/com/google/gcloud/datastore Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60- refs/heads/tswast-patch-1: b08c4590fe39321cc6dc2aacfe9b2f1be27228a1
60+ refs/heads/tswast-patch-1: cce26a1f95c9ee3e0842a34d5d1ea5f728f86887
6161refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b
Original file line number Diff line number Diff line change 1616
1717package 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+
1923import com .google .common .collect .ImmutableList ;
24+
2025import org .junit .Test ;
2126
2227import 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-
2829public class ListValueTest {
2930
3031 private static final List <Value <?>> CONTENT = ImmutableList .of (NullValue .of (), StringValue .of ("foo" ));
Original file line number Diff line number Diff line change 11package 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 ;
66import static org .junit .Assert .assertArrayEquals ;
77import static org .junit .Assert .assertTrue ;
88
9+ import org .junit .Test ;
10+
911public class ProjectionEntityTest {
1012
1113 private static final Key KEY = Key .builder ("ds1" , "k1" , "n1" ).build ();
Original file line number Diff line number Diff line change 1616
1717package com .google .gcloud .datastore ;
1818
19- import com .google .api .services .datastore .DatastoreV1 ;
20- import org .junit .Test ;
21-
2219import static junit .framework .TestCase .assertFalse ;
2320import static org .junit .Assert .assertEquals ;
2421import static org .junit .Assert .assertTrue ;
2522
23+ import com .google .api .services .datastore .DatastoreV1 ;
24+
25+ import org .junit .Test ;
26+
2627public class RawValueTest {
2728
2829 private static final DatastoreV1 .Value CONTENT = StringValue .of ("hello" ).toPb ();
Original file line number Diff line number Diff line change 2525import com .google .common .collect .ImmutableMap ;
2626import com .google .common .primitives .Primitives ;
2727import com .google .gcloud .datastore .Value .Type ;
28+
2829import org .junit .Before ;
2930import org .junit .Test ;
3031
You can’t perform that action at this time.
0 commit comments