mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
13 lines
189 B
Go
13 lines
189 B
Go
package logging
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestLogging(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Logging Suite")
|
|
}
|