11 lines
187 B
Go
11 lines
187 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
// Basic test to ensure the main package can be imported and tested
|
|
t.Log("TurtleSilicon main package test passed")
|
|
}
|