Skip to content

houqp/gtest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GTest

Documentation goreportcard codecov CircleCI

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.