mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
28 lines
441 B
Go
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)
|
|
}
|