This website works better with JavaScript.
Home
Help
Register
Sign In
go
/
capstan
Watch
3
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Added setup code for package-level tests.
multi-app-trie
Benjamin Shelton
4 months ago
parent
8e88b55116
commit
50c0a8c089
1 changed files
with
17 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+17
-0
package_test.go
+ 17
- 0
package_test.go
View File
@ -0,0 +1,17 @@
package
capstan
import
(
"fmt"
"os"
"testing"
)
func
TestMain
(
m
*
testing
.
M
)
{
err
:=
initProxyTrie
(
)
if
err
!=
nil
{
fmt
.
Println
(
"error running tests:"
,
err
)
os
.
Exit
(
1
)
}
os
.
Exit
(
m
.
Run
(
)
)
}
Write
Preview
Loading…
Cancel
Save