mirror of
https://github.com/safedep/vet.git
synced 2025-12-10 00:22:08 -06:00
feat: Building code graph Refactor to support import processing Handle relative import name fixup Add docs for code analysis framework Update docs to include additional examples feat: Function call graph Update code graph to link function decl and calls Include call node in function calls feat: Flatten vulnerabilities in CSV reporter refactor: Maintain separation of concerns for code analysis framework refactor: Separate storage entities in its own package feat: Add callback support in code graph builder docs: Fix code analysis framework docs Signed-off-by: abhisek <abhisek.datta@gmail.com>
21 lines
274 B
Go
21 lines
274 B
Go
package code
|
|
|
|
import "testing"
|
|
|
|
func TestLangMapFileToModule(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
path string
|
|
mod string
|
|
err error
|
|
}{
|
|
{},
|
|
}
|
|
|
|
for _, test := range cases {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
// TODO: Implement test
|
|
})
|
|
}
|
|
}
|