Guidelines for tests as a Spec?
See original GitHub issueI think that we should push for Tests in all implementations. However a question arises, how and what do we exactly test? I don’t know if there are tools for writing framework/language agnostic tests but something like:
assert.equal(ProfileName, 'Alon Bukai', 'Author name is correct');
Issue Analytics
- State:
- Created 6 years ago
- Reactions:3
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Test Procedures and Acceptance Criteria for New Drug ...
NOTE FOR GUIDANCE SPECIFICATIONS: TEST PROCEDURES AND ... Biotechnological/Biological Products addresses guideline specifications, tests and procedures.
Read more >Better Specs. Testing Guidelines for Developers.
Better Specs is a collection of best practices developers learned while testing apps that you can use to improve your coding skills, or...
Read more >How to Test Software Requirements Specification (SRS)?
This tutorial on Software Requirements Specification (SRS) states that Requirements must be clear, specific, measurable and complete without ...
Read more >Interim Guidelines for Clinical Specimens for COVID-19
Find guidelines for healthcare providers and local and state health departments on collecting, handling, and testing clinical specimens for COVID-19.
Read more >17 Guidelines for healthy specs
Here are a few guidelines for “spec” style unit tests that developers in our team are encouraged to follow. These will be familiar...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Just my 2 cents but I think the way it’s worded here is perfect for realworld (other than using the term TDD when it’s probably just referring to testing like mentioned above). If every repo sort of serves as a representative of that community I think that most people will be implementing some unit testing and if it’s not there initially it would be a great contribution opportunity for the next developer. I don’t think it needs to be required though.
@EricSimons TDD is test driven development. Writing tests before writing any other code and then iterating towards passing tests.