17 lines
388 B
Go
17 lines
388 B
Go
package testrunner
|
|
|
|
import (
|
|
dbtc "fiskerinc.com/modules/db/queries/mocks"
|
|
htc "fiskerinc.com/modules/httpclient/tester"
|
|
ktc "fiskerinc.com/modules/kafka/mock"
|
|
rtc "fiskerinc.com/modules/redis/tester"
|
|
)
|
|
|
|
type TestCase struct {
|
|
Name string
|
|
HttpTestCase *htc.HttpTestCase
|
|
DBTestCase *dbtc.DBTestCase
|
|
RedisTestCase *rtc.RedisTestCase
|
|
KafkaTestCase *ktc.KafkaTestCase
|
|
}
|