单元测试单元测试// hello.v fn hello() string { return 'Hello world'} // hello_test.v fn test_hello() { assert hello() == 'Hello world'} 所有测试函数都必须放在*test.v文件中,测试函数以test开头。通过v hello_test.v运行单个测试代码,通过v test mymodule测试整个模块。