Skip to content

Commit

Permalink
debug: test provider config is loaded before tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyn committed Jan 27, 2021
1 parent b5b4fd8 commit 82de03e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
5 changes: 5 additions & 0 deletions google-cloud-nio/pom.xml
Expand Up @@ -114,6 +114,11 @@
<artifactId>auto-value</artifactId>
<version>1.7.4</version>
</path>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc7</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down

This file was deleted.

Expand Up @@ -24,6 +24,8 @@
import com.google.common.testing.NullPointerTester;
import java.io.IOException;
import java.net.URI;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
Expand All @@ -39,6 +41,7 @@ public class CloudStorageOptionsTest {
@Before
public void before() {
CloudStorageFileSystemProvider.setStorageOptions(LocalStorageHelper.getOptions());
CloudStorageFileSystem mockFs = CloudStorageFileSystem.forBucket("bucket");
}

@Test
Expand Down

0 comments on commit 82de03e

Please sign in to comment.