Added more tests
This commit is contained in:
parent
bec409dbd0
commit
0e7c66e44f
12
src/exe/macho/MachO_test.go
Normal file
12
src/exe/macho/MachO_test.go
Normal file
@ -0,0 +1,12 @@
|
||||
package macho_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/exe/macho"
|
||||
)
|
||||
|
||||
func TestWrite(t *testing.T) {
|
||||
macho.Write(io.Discard, nil, nil)
|
||||
}
|
12
src/exe/pe/EXE_test.go
Normal file
12
src/exe/pe/EXE_test.go
Normal file
@ -0,0 +1,12 @@
|
||||
package pe_test
|
||||
|
||||
import (
|
||||
"io"
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/exe/pe"
|
||||
)
|
||||
|
||||
func TestWrite(t *testing.T) {
|
||||
pe.Write(io.Discard, nil, nil)
|
||||
}
|
Loading…
Reference in New Issue
Block a user