Added more tests
This commit is contained in:
parent
c7881ab0ef
commit
49eaf064a3
2 changed files with 24 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue