8 lines
109 B
Go
8 lines
109 B
Go
package main
|
|
|
|
import "testing"
|
|
|
|
func TestTesting(t *testing.T) {
|
|
t.Log("Compilation and testing is fine")
|
|
}
|