github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/backend/googlecloudstorage/googlecloudstorage_test.go (about) 1 // Test GoogleCloudStorage filesystem interface 2 3 package googlecloudstorage_test 4 5 import ( 6 "testing" 7 8 "github.com/rclone/rclone/backend/googlecloudstorage" 9 "github.com/rclone/rclone/fstest/fstests" 10 ) 11 12 // TestIntegration runs integration tests against the remote 13 func TestIntegration(t *testing.T) { 14 fstests.Run(t, &fstests.Opt{ 15 RemoteName: "TestGoogleCloudStorage:", 16 NilObject: (*googlecloudstorage.Object)(nil), 17 }) 18 }