Advanced Unit Testing Techniques In Golang-Mock, Subtests, Parallel Execution of Tests with hands-on



Advanced Unit Testing Techniques In Golang-Mock, Subtests, Parallel Execution of Tests with hands-on

Advanced Unit Testing Techniques In Golang-Mock, Subtests, Parallel Execution of Tests with hands-on

You can find the source code at https://github.com/SivaprasadTamatam/go-testing/tree/main/advanced/geometry

Mocking and Dependency Injection in Go
In Go, you can use interfaces to define dependencies and then create mock implementations for testing

Subtests and Parallel Testing in Go
In Go, you can use subtests to organize tests and run them in parallel.