mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
14 lines
231 B
Go
14 lines
231 B
Go
package tpkt
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/shadow1ng/fscan/libs/grdp/glog"
|
|
)
|
|
|
|
func TestRecvFastPathWithoutListenerDoesNotPanic(t *testing.T) {
|
|
glog.SetLevel(glog.NONE)
|
|
tpkt := &TPKT{}
|
|
tpkt.recvFastPath([]byte{0x00}, nil)
|
|
}
|