Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/riita10069/cynthia
Cynthia ensures test-driven development. When you use it in CI, it ensures that untested methods are not introduced. The reason for this is that Cynthia alerts you to a function that has no tests.
https://github.com/riita10069/cynthia
golang tdd
Last synced: about 18 hours ago
JSON representation
Cynthia ensures test-driven development. When you use it in CI, it ensures that untested methods are not introduced. The reason for this is that Cynthia alerts you to a function that has no tests.
- Host: GitHub
- URL: https://github.com/riita10069/cynthia
- Owner: riita10069
- License: mit
- Created: 2020-09-06T17:37:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-12T16:21:40.000Z (over 3 years ago)
- Last Synced: 2025-01-20T06:57:52.140Z (4 days ago)
- Topics: golang, tdd
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Cynthia
This is a tool for TDD(Test Driven Development).Cynthia ensures test-driven development. When you use it in CI, it ensures that untested methods are not introduced.
The reason for this is that Cynthia alerts you to a function that has no tests.### derivation
The Greek pronunciation of the word `συνήθεια`, meaning habit, converted to the alphabet.The most important thing in test-driven development is to make it a habit.
By writing from the test first, you'll have a clean, easy-to-use function.
We hope that you'll get into the habit of doing so.
That's why I named it after this tool.## Getting Stated
### How to Install```
go get github.com/riita10069/cynthia/cmd/cynthia
```### Usage Example
```
go vet -vettool=`which cynthia` [package path]
go vet -vettool=`which cynthia` [package path1] [package path2] [package path3]
```