package driver import "testing" func TestDriver(t *testing.T) { var driver Driver driver = &Mongo{} driver = &BoltDB{} t.Log(driver) }