17 lines
252 B
Go
17 lines
252 B
Go
|
// 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)
|
||
|
}
|
||
|
|
||
|
|