mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
12 lines
204 B
Go
12 lines
204 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestNewRouter(t *testing.T) {
|
|
if value := NewRouter(bot.exchanges); value.KeepContext {
|
|
t.Error("Test Failed - Restful_Router_Test.go - NewRouter Error")
|
|
}
|
|
}
|