Skip to content

Commit

Permalink
Add a test's main func
Browse files Browse the repository at this point in the history
  • Loading branch information
pchchv committed Dec 10, 2023
1 parent 249f040 commit 5c336b4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cmd/test/test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package main

import (
"flag"

"github.com/pchchv/goip/test"
)

func main() {
isLimitedPtr := flag.Bool("limited", false, "exclude caching and threading tests")
flag.Parse()
test.Test(*isLimitedPtr)
}

0 comments on commit 5c336b4

Please sign in to comment.