]> Sergey Matveev's repositories - btrtrc.git/blob - main_test.go
Skeleton TestMain
[btrtrc.git] / main_test.go
1 package torrent
2
3 import (
4         "os"
5         "testing"
6 )
7
8 func TestMain(m *testing.M) {
9         code := m.Run()
10         // select {}
11         os.Exit(code)
12 }