blob: a66479d1471325eeb2bf1d270ef7c83f27dc3da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2025 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package flow
import (
"testing"
"github.com/google/syzkaller/pkg/aflow"
)
// Note: this test also runs registration and verification of all registered workflows via init functions.
func TestMCPTools(t *testing.T) {
for tool := range aflow.MCPTools {
t.Log(tool.Name)
}
}
|