Added more tests

This commit is contained in:
Eduard Urbach 2024-08-15 13:57:05 +02:00
parent bec409dbd0
commit 0e7c66e44f
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
2 changed files with 24 additions and 0 deletions

View 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
View 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)
}