mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-28 07:56:18 +00:00
10 lines
122 B
Go
10 lines
122 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func FirstFailTest(t *testing.T) {
|
|
t.Fatalf(`Hello("") = %q, %v, want "", error`)
|
|
}
|