paypal/client_test.go

13 lines
188 B
Go
Raw Normal View History

2015-10-15 07:52:16 +02:00
package paypalsdk
import (
2015-10-30 08:02:32 +01:00
"testing"
2015-10-15 07:52:16 +02:00
)
func TestNewClient(t *testing.T) {
2015-10-30 08:02:32 +01:00
_, err := NewClient("", "", "")
if err == nil {
t.Errorf("All arguments are required in NewClient()")
}
2015-10-15 07:52:16 +02:00
}