paypale/auth_test.go

11 lines
157 B
Go
Raw Normal View History

2015-10-15 10:47:36 +02:00
package paypalsdk
import (
2015-10-30 08:02:32 +01:00
"testing"
2015-10-15 10:47:36 +02:00
)
2015-10-30 08:02:32 +01:00
func TestGetAccessToken(t *testing.T) {
c, _ := NewClient("clid", "secret", APIBaseSandBox)
2015-11-20 07:38:40 +01:00
c.GetAccessToken()
2015-10-16 12:00:57 +02:00
}