8 lines
99 B
Go
8 lines
99 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestHelloFromTest(t *testing.T) {
|
||
|
|
t.Log("Hello from test")
|
||
|
|
}
|