blob: c3ff7b1e43df210c2f5d838eb69f0c23bf07d04c [file] [log] [blame]
package backends
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNewBigQueryClient_ValidProject_Client(t *testing.T) {
ctx := context.Background()
client, err := NewBigQueryClient(ctx, "chromeperf")
require.NoError(t, err)
assert.NotNil(t, client)
}