Skip to content

Commit 3e3997e

Browse files
committed
test: remove irrelevant testing scripts and data
1 parent 776405a commit 3e3997e

File tree

3 files changed

+16
-37
lines changed

3 files changed

+16
-37
lines changed

test/acceptance/Makefile

Lines changed: 0 additions & 15 deletions
This file was deleted.

test/acceptance/docker-compose.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

test/testpb/factory.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package testpb
2+
3+
import (
4+
"math/rand"
5+
6+
"github.com/google/uuid"
7+
"google.golang.org/protobuf/types/known/timestamppb"
8+
)
9+
10+
func MakeCurrentRandomTestMessage() *Message {
11+
return &Message{
12+
IdIncremental: rand.Int63(),
13+
Uuid: uuid.NewString(),
14+
Created: timestamppb.Now(),
15+
}
16+
}

0 commit comments

Comments
 (0)