* feat(Sonyflake): define error variables
* feat(Sonyflake): add New() function
- minor logic improvements
- return errors
* tests(Sonyflake): remove old TestNilSonyflake test function in favour of the New() function coverage
* gofmt
* Update error messages and comments
* Introduce New function
---------
Co-authored-by: Quetzy Garcia <quetzy.garcia@integrate.com>
* Introduce mocking framework and increase coverage (#22)
This change introduces two common golang patterns:
- types: this will allow fine-tuned control over imported
types by defining where they will be used and how
- mock: this allows the generation of mock constructors,
which allows for testing any individual path in a method by
"injecting" a mock method which matches the expected type
This change also increases test coverage to 100%
Co-authored-by: Yoshiyuki Mineo <Yoshiyuki.Mineo@jp.sony.com>
* gofmt
---------
Co-authored-by: Bradley Boutcher <btboutcher@icloud.com>
* Add sortable test (#11)
* add TestSortableID to make sure that generated ID(s) can be sorted like you are using increment id database
* add TestSortableID to make sure that generated ID(s) can be sorted like you are using increment id database
Co-authored-by: Yoshiyuki Mineo <Yoshiyuki.Mineo@jp.sony.com>
* gofmt
* Check time order explicitly
Co-authored-by: Yusuf Syaifudin <yusuf.syaifudin@gmail.com>