11 lines
147 B
Go
11 lines
147 B
Go
|
package elfs
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestMakeName(t *testing.T) {
|
||
|
n := MakeName()
|
||
|
if len(n) == 0 {
|
||
|
t.Fatalf("MakeName had a zero output")
|
||
|
}
|
||
|
}
|