Mike Schwörer
ef78b7467b
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m16s
25 lines
293 B
Go
25 lines
293 B
Go
package scn
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestSendSCN(t *testing.T) {
|
|
t.Skip()
|
|
return
|
|
|
|
mr, err := New("TODO", "TODO").
|
|
Message("Hello Test").
|
|
Content("This is a test / goext").
|
|
Send(context.Background())
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Printf("%+v\n", mr)
|
|
|
|
}
|