Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lwydyby/astfunc
使用ast获取指定方法的入参,出参类型,以及这个方法中调用的方法的入参和出参
https://github.com/lwydyby/astfunc
ast golang unittest
Last synced: 8 days ago
JSON representation
使用ast获取指定方法的入参,出参类型,以及这个方法中调用的方法的入参和出参
- Host: GitHub
- URL: https://github.com/lwydyby/astfunc
- Owner: lwydyby
- Created: 2024-04-12T09:53:14.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-12T10:00:41.000Z (9 months ago)
- Last Synced: 2024-10-30T04:56:01.633Z (about 2 months ago)
- Topics: ast, golang, unittest
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# 目标
使用ast获取指定方法的入参,出参类型,以及这个方法中调用的方法的入参和出参# 使用场景
将这些信息提供给AI工具,由AI工具生成单测,相比于单纯将方法提供给AI,AI可以获取更多的上下文,生成的单测也会更加准确# 使用示例
```go
package mainimport (
"fmt""github.com/lwydyby/astfunc"
)func main() {
result := astfunc.GetFuncWithDependency(".", "A")
fmt.Println(result)
}
```结果
```bash
方法所在项目module为:github.com/lwydyby/astfunc
方法的package为: 1
需要添加单元测试的方法如下:
func A(a string) string {
return B()
}
测试方法的入参结构为:string
测试方法的返回结构为:string
测试方法内调用的方法入参和返回分别为:方法名: B
入参:
返回类型: string```