コード例 #1
0
ファイル: store_test.go プロジェクト: bcampbell/bleve
func TestMetricsPrefixIteratorSeek(t *testing.T) {
	s := open(t, nil)
	defer cleanup(t, s)
	test.CommonTestPrefixIteratorSeek(t, s)
}
コード例 #2
0
ファイル: store_test.go プロジェクト: bcampbell/bleve
func TestGoLevelDBPrefixIteratorSeek(t *testing.T) {
	s := open(t, nil)
	defer cleanup(t, s)
	test.CommonTestPrefixIteratorSeek(t, s)
}
コード例 #3
0
ファイル: lower_test.go プロジェクト: bcampbell/bleve
func TestMossWithLowerPrefixIteratorSeek(t *testing.T) {
	tmpDir, s := openWithLower(t, nil)
	defer cleanupWithLower(t, s, tmpDir)
	test.CommonTestPrefixIteratorSeek(t, s)
}