nw-pbt-go
Installation
SKILL.md
PBT Go -- rapid, gopter
Framework Selection
| Framework | Shrinking | Stateful | API Style | Choose When |
|---|---|---|---|---|
| rapid | Internal (Hypothesis-like) | Yes (StateMachine) | Idiomatic Go (*rapid.T) |
Default choice. Simpler API, better shrinking. |
| gopter | Type-based | Yes (commands) | Explicit generator construction | Need maximum control over generation |
Default: rapid. More idiomatic Go API and fully automatic shrinking.
Quick Start (rapid)
import (
"sort"
"testing"
"pgregory.net/rapid"
)