Codebase list golang-github-segmentio-kafka-go / debian/latest export_test.go
debian/latest

Tree @debian/latest (Download .tar.gz)

export_test.go @debian/latestraw · 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
}