Skip to content

Commit 4385d8a

Browse files
committed
---
yaml --- r: 237 b: refs/heads/master c: 2c8387d h: refs/heads/master i: 235: c833e4e v: v3
1 parent 8a811ce commit 4385d8a

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
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 2dd990c18e4b577f39a51e0d66a31a57af643bac
2+
refs/heads/master: 2c8387df7f7577062982456cdfb8b1391d2b5772
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)