vendor tsgo
This commit is contained in:
19
tools/tsgo/internal/project/logging/logtree_test.go
Normal file
19
tools/tsgo/internal/project/logging/logtree_test.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package logging
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
// Verify LogTree implements the expected interface
|
||||
type testLogger interface {
|
||||
Log(msg ...any)
|
||||
}
|
||||
|
||||
func TestLogTreeImplementsLogger(t *testing.T) {
|
||||
t.Parallel()
|
||||
var _ testLogger = &LogTree{}
|
||||
}
|
||||
|
||||
func TestLogTree(t *testing.T) {
|
||||
t.Parallel()
|
||||
}
|
||||
Reference in New Issue
Block a user