Skip to content

Commit 49a3fc0

Browse files
committed
---
yaml --- r: 5997 b: refs/heads/tswast-patch-1 c: 2c8387d h: refs/heads/master i: 5995: 1b56792
1 parent a15b7dd commit 49a3fc0

2 files changed

Lines changed: 49 additions & 1 deletion

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 2dd990c18e4b577f39a51e0d66a31a57af643bac
60+
refs/heads/tswast-patch-1: 2c8387df7f7577062982456cdfb8b1391d2b5772
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/*
2+
* Copyright 2015 Google Inc. All Rights Reserved.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.google.gcloud.storage;
18+
19+
import com.google.gcloud.storage.BatchRequest.Builder;
20+
import com.google.gcloud.storage.StorageService.BlobSourceOption;
21+
22+
import org.junit.Test;
23+
24+
public class BatchRequestTest {
25+
26+
@Test
27+
public void testRequest() throws Exception {
28+
Builder builder = BatchRequest.builder();
29+
builder.delete("b1", "o1")
30+
BatchRequest.builder().delete("b1", "o1",
31+
BlobSourceOption.generationMatch(), BlobSourceOption.metagenerationMatch());
32+
}
33+
34+
@Test
35+
public void testToUpdate() throws Exception {
36+
37+
}
38+
39+
@Test
40+
public void testToGet() throws Exception {
41+
42+
}
43+
44+
@Test
45+
public void testBuilder() throws Exception {
46+
47+
}
48+
}

0 commit comments

Comments
 (0)