Files
gocryptotrader/main_test.go
2017-07-31 11:44:54 +10:00

28 lines
441 B
Go

package main
import "testing"
func TestSetupBotExchanges(t *testing.T) {
// setupBotExchanges()
}
func TestMain(t *testing.T) {
// Nothing
}
func TestAdjustGoMaxProcs(t *testing.T) {
AdjustGoMaxProcs()
}
func TestHandleInterrupt(t *testing.T) {
HandleInterrupt()
}
func TestShutdown(t *testing.T) {
// Nothing
}
func TestSeedExchangeAccountInfo(t *testing.T) {
SeedExchangeAccountInfo(GetAllEnabledExchangeAccountInfo().Data)
}