Codebase list golang-github-segmentio-kafka-go / HEAD export_test.go
HEAD

Tree @HEAD (Download .tar.gz)

export_test.go @HEADraw · history · blame

1
2
3
4
5
6
7
8
9
package kafka

import "testing"

func CreateTopic(t *testing.T, partitions int) string {
	topic := makeTopic()
	createTopic(t, topic, partitions)
	return topic
}