mirror of
https://github.com/plutov/paypal.git
synced 2025-02-02 15:10:36 +01:00
13 lines
206 B
Go
13 lines
206 B
Go
|
package paypalsdk
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestNewClient(t *testing.T) {
|
||
|
_, err := NewClient("", "", "")
|
||
|
if err == nil {
|
||
|
t.Errorf("All arguments are required in NewClient()")
|
||
|
}
|
||
|
}
|