forked from go-packages/paypal
11 lines
157 B
Go
11 lines
157 B
Go
package paypalsdk
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGetAccessToken(t *testing.T) {
|
|
c, _ := NewClient("clid", "secret", APIBaseSandBox)
|
|
c.GetAccessToken()
|
|
}
|