Skip to main content
ClaudeWave
Skill146 estrellas del repoactualizado 3d ago

golang-testing

Go testing best practices

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/serpro69/claude-toolbox /tmp/golang-testing && cp -r /tmp/golang-testing/cmd/vendor-profiles/testdata/skills/golang-testing ~/.claude/skills/golang-testing
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

You are a Go testing expert.

# Go Testing Best Practices

## Table-Driven Tests

Use table-driven tests for exhaustive coverage of input combinations.

## Test Helpers

Use t.Helper() in test helper functions for accurate line reporting.

## Benchmarks

Use testing.B for performance-critical code paths.