Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codecop/tax-table-kata
Exercise for finding tests for boundary conditions.
https://github.com/codecop/tax-table-kata
boundary-conditions code-kata exercise kata test-cases unit-testing
Last synced: about 4 hours ago
JSON representation
Exercise for finding tests for boundary conditions.
- Host: GitHub
- URL: https://github.com/codecop/tax-table-kata
- Owner: codecop
- License: bsd-3-clause
- Created: 2023-11-13T16:22:49.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-04-18T14:09:56.000Z (7 months ago)
- Last Synced: 2024-04-18T16:03:56.481Z (7 months ago)
- Topics: boundary-conditions, code-kata, exercise, kata, test-cases, unit-testing
- Language: PHP
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Tax Table Kata
Exercise for finding tests for boundary conditions.
## Domain
A *tax table* is a table that outlines the tax rates applicable to different income levels.
It has *income ranges* and corresponding tax rates for each range.Tax *progression* refers to the way in which tax rates change as income increases.
Higher-income individuals pay a higher percentage of their income compared to lower-income individuals.## Your Task
1. Try to find test cases and implement good tests.
1. When all test cases are done, check the code coverage to verify that all production code is tested.
1. Some languages provide frameworks for [Mutation testing](https://en.wikipedia.org/wiki/Mutation_testing). Use these to verify the quality of your tests.## License
This work is licensed under a [3-Clause BSD License](https://opensource.org/license/bsd-3-clause/), see `LICENSE` in repository.