9 lines
205 B
Go
9 lines
205 B
Go
|
package simplelog
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
// TestCompile checks if the package compiles successfully.
|
||
|
func TestCompile(t *testing.T) {
|
||
|
// This test ensures that the simplelog package compiles without error.
|
||
|
}
|