paypale/client_test.go

13 lines
206 B
Go
Raw Normal View History

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