paypal/client_test.go
2015-10-30 14:02:32 +07:00

13 lines
188 B
Go

package paypalsdk
import (
"testing"
)
func TestNewClient(t *testing.T) {
_, err := NewClient("", "", "")
if err == nil {
t.Errorf("All arguments are required in NewClient()")
}
}