File: conn_test.go

package info (click to toggle)
golang-gopkg-fatih-pool.v2 0.0~git20171010.010e0b7-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 76 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
package pool

import (
	"net"
	"testing"
)

func TestConn_Impl(t *testing.T) {
	var _ net.Conn = new(PoolConn)
}