14 lines
184 B
Go
14 lines
184 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package query_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
// TODO
|
|
func TestToString(t *testing.T) {
|
|
assert.Assert(t, 1 == 1+0)
|
|
}
|