• 单元测试

    单元测试

    1. // hello.v
    2. fn hello() string {
    3. return 'Hello world'
    4. }
    5. // hello_test.v
    6. fn test_hello() {
    7. assert hello() == 'Hello world'
    8. }

    所有测试函数都必须放在*test.v文件中,测试函数以test开头。通过v hello_test.v运行单个测试代码,通过v test mymodule测试整个模块。