Description
Related Issue
Checklist
check with "x", ONLY IF APPLIED to your change
- All methods associated with structs has
func (<first letter of struct> *struct) method() {}name style. - Wrote unit tests for new/changed features.
- Followed the unit test
when,shouldnaming pattern. - All mocks created with
m := mocks.NewConstructor(t). - All mocks using
m.EXPECT().MethodName()method to mock methods. - Updated docs/doc.go and docs/*
- Updated
example_test.go. - Updated README.md
- New public methods/structs/interfaces has comments upside them explaining they responsibilities
- Executed
make dodwith none issues pointed out bygolangci-lint