11 lines
105 B
Go
11 lines
105 B
Go
package tests
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func Test_test(T *testing.T) {
|
|
fmt.Printf("Hello World")
|
|
}
|