jx/internal/search/trie_test.go

17 lines
252 B
Go
Raw Permalink Normal View History

2024-08-29 02:40:17 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package search
import (
"github.com/stretchr/testify/assert"
"testing"
_ "log/slog"
)
func TestNewTrie(t *testing.T) {
n := NewTrieNode()
assert.NotNil(t, n)
}