A mature testing framework for Go designed to help you write expressive specs
Overall
score
97%
A test suite that validates a simple calculator module with execution trace generation enabled. The test suite should use the testing framework's built-in support for generating execution traces to help identify performance issues and analyze concurrency patterns.
@generates
package calculator
// Add returns the sum of two integers
func Add(a, b int) int
// Multiply returns the product of two integers
func Multiply(a, b int) intProvides BDD testing framework with execution trace support for performance analysis.
@satisfied-by
Provides matcher/assertion library for writing test assertions.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/golang-github-com-onsi-ginkgo-v2docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10