Lightweight Golang test framework inspired by pytest.
GTest provides the following functionalities to help reduce boilerplate in test code:
- Test grouping
- Setup, Teardown hooks for test groups
- BeforeEach, AfterEach hooks for tests
- Fixture injection
See docs, example_test.go and gtest_test.go for examples.