Add unit tests

This commit is contained in:
Mayuresh Gaitonde
2020-12-17 17:25:53 -08:00
parent 3702339f44
commit 6be4d69d02
705 changed files with 120529 additions and 150051 deletions

57
go.mod
View File

@@ -3,35 +3,36 @@ module github.com/mayuresh82/gocast
go 1.12
require (
github.com/armon/go-radix v1.0.0
github.com/dgryski/go-farm v0.0.0-20180109070241-2de33835d102
github.com/eapache/channels v1.1.0
github.com/eapache/queue v1.1.0
github.com/fsnotify/fsnotify v1.4.7
github.com/armon/go-radix v1.0.0 // indirect
github.com/dgryski/go-farm v0.0.0-20180109070241-2de33835d102 // indirect
github.com/eapache/channels v1.1.0 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/protobuf v1.2.0
github.com/hashicorp/hcl v1.0.0
github.com/influxdata/influxdb v1.6.4
github.com/konsorten/go-windows-terminal-sequences v1.0.1
github.com/magiconair/properties v1.8.0
github.com/mitchellh/mapstructure v1.1.2
github.com/osrg/gobgp v0.0.0-20180929145215-329c2d316efe
github.com/pelletier/go-toml v1.2.0
github.com/satori/go.uuid v0.0.0-20181016184021-8ccf5352a842
github.com/golang/lint v0.0.0-20180702182130-06c8688daad7 // indirect
github.com/golang/protobuf v1.4.1
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/influxdata/influxdb v1.6.4 // indirect
github.com/kisielk/gotool v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/osrg/gobgp v0.0.0-20200806055634-c6f0eba8f4d8
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/satori/go.uuid v0.0.0-20181016184021-8ccf5352a842 // indirect
github.com/sirupsen/logrus v1.1.1
github.com/spf13/afero v1.1.2
github.com/spf13/cast v1.2.0
github.com/spf13/jwalterweatherman v1.0.0
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v0.0.0-20180930044127-62edee319679
github.com/vishvananda/netlink v0.0.0-20181018205019-d3a23fd178f1
github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc
golang.org/x/crypto v0.0.0-20181015023909-0c41d7ab0a0e
golang.org/x/net v0.0.0-20181017193950-04a2e542c03f
golang.org/x/sys v0.0.0-20181021155630-eda9bb28ed51
golang.org/x/text v0.3.0
google.golang.org/genproto v0.0.0-20181016170114-94acd270e44e
google.golang.org/grpc v1.15.0
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.3.0
github.com/vishvananda/netlink v0.0.0-20181018205019-d3a23fd178f1 // indirect
github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc // indirect
golang.org/x/text v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
google.golang.org/grpc v1.27.0 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect
gopkg.in/yaml.v2 v2.2.1
)