docs/docs/tools/cli/go/test/example.md
Snider 5b5beaf36f refactor: move agent, mcp, ide, cli, api under tools/ directory
URLs now /tools/agent/, /tools/mcp/, /tools/cli/, etc.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-11 11:50:26 +00:00

339 B

Go Test Examples

# All tests
core go test

# Specific package
core go test --pkg ./pkg/core

# Specific test
core go test --run TestHash

# With coverage
core go test --coverage

# Race detection
core go test --race

# Short tests only
core go test --short

# Verbose
core go test -v

# JSON output (CI)
core go test --json