fusenapi/generator/main_test.go

16 lines
227 B
Go
Raw Normal View History

2023-06-14 10:17:45 +00:00
package main
import (
"os"
"testing"
)
func TestMain(t *testing.T) {
// args := []string{"-name", "fs_guest"}
targerDir = "../" + targerDir
genDir = "../" + genDir
os.Args = []string{"cmd", "-name=fs_guest"}
main()
}