WIP: Scaffolding for integration tests

This commit is contained in:
Lucas Rouckhout
2023-05-29 16:46:43 +02:00
parent 775fec0a03
commit 220985bf3c
6 changed files with 317 additions and 152 deletions

11
rabbitmq/rabbitmq_test.go Normal file
View File

@@ -0,0 +1,11 @@
package rabbitmq_test
import (
"testing"
)
//go:generate mockgen -destination=./rabbitmqmocks/rabbitmq.go -package rabbitmqmocks github.com/getAlby/lndhub.go/rabbitmq LndHubService
func TestFinalizedInitializedPayments(t *testing.T) {
t.Parallel()
}