core/log/log_test.go

11 lines
124 B
Go
Raw Normal View History

2024-01-01 16:55:54 +00:00
package log
import (
"testing"
)
func TestPrintf(t *testing.T) {
Printf("This is a test\n")
Printf("Another test\n")
}