27 lines
397 B
Go
27 lines
397 B
Go
package payload
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
/**
|
|
* @Author linya.jj
|
|
* @Date 2023/3/22 18:22
|
|
*/
|
|
|
|
func TestConnectionEndpointResponse_Valid(t *testing.T) {
|
|
resp := &ConnectionEndpointResponse{
|
|
Endpoint: "ep",
|
|
Ticket: "ti",
|
|
}
|
|
|
|
assert.Nil(t, resp.Valid())
|
|
|
|
resp.Endpoint = ""
|
|
assert.NotNil(t, resp.Valid())
|
|
|
|
resp = nil
|
|
assert.NotNil(t, resp.Valid())
|
|
}
|