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