()
| 111 | } |
| 112 | |
| 113 | func showPocsList() { |
| 114 | fmt.Println("Pocs list: ") |
| 115 | ls := attack.GetList() |
| 116 | // 遍历list,输出pocs名称 |
| 117 | for i := ls.Front(); i != nil; i = i.Next() { |
| 118 | fmt.Println(i.Value) |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | func showVerbose(options *Options) { |
| 123 | if !options.Verbose { |
no test coverage detected