envtest/rootpath.go

Summary

Maintainability
A
0 mins
Test Coverage
package envtest

import (
    "path/filepath"
    "runtime"
)

var (
    _, b, _, _ = runtime.Caller(0)

    // Root folder of this project
    Root = filepath.Join(filepath.Dir(b), "..")
)