Content deleted Content added
Added URL to one of the references |
Citation bot (talk | contribs) Add: date, authors 1-1. Removed parameters. Some additions/deletions were parameter name changes. | Use this bot. Report bugs. | Suggested by Abductive | Category:Extreme programming | #UCB_Category 22/41 |
||
Line 4:
'''Test-driven development''' ('''TDD''') is a way of writing [[source code|code]] that involves writing an [[test automation|automated]] [[unit testing|unit-level]] [[test case]] that fails, then writing just enough code to make the test pass, then [[refactoring]] both the test code and the production code, then repeating with another new test case.
Alternative approaches to writing automated tests is to write all of the production code before starting on the test code or to write all of the test code before starting on the production code. With TDD, both are written together, therefore shortening debugging time necessities.<ref>{{Cite journal |
TDD is related to the test-first programming concepts of [[extreme programming]], begun in 1999,<ref name="Cworld92">{{cite web |url=http://www.computerworld.com/softwaretopics/software/appdev/story/0,10801,66192,00.html |title=Extreme Programming |author=Lee Copeland |date=December 2001 |publisher=Computerworld |access-date=January 11, 2011 |archive-url=https://web.archive.org/web/20110605060209/http://www.computerworld.com/s/article/66192/Extreme_Programming?taxonomyId=063 |archive-date=June 5, 2011 |url-status=dead }}</ref> but more recently has created more general interest in its own right.<ref name=Newkirk>Newkirk, JW and Vorontsov, AA. ''Test-Driven Development in Microsoft .NET'', Microsoft Press, 2004.</ref>
Line 220:
# '''Increased Code Volume''': Implementing TDD can result in a larger codebase as tests add to the total amount of code written.
# '''False Security from Tests''': A large number of passing tests can sometimes give a misleading sense of security regarding the code's robustness.<ref>{{Cite journal |
# '''Maintenance Overheads''': Maintaining a large suite of tests can add overhead to the development process.
# '''Time-Consuming Test Processes''': Writing and maintaining tests can be time-consuming.
Line 340:
== Conference ==
First TDD Conference was held during July 2021.<ref>{{cite web|last=Bunardzic|first=Alex|title=First International Test Driven Development (TDD) Conference|url=https://tddconference.github.io/|access-date=2021-07-20|website=TDD Conference|language=en}}</ref> Conferences were recorded on [[YouTube]]<ref>{{Citation|title=First International TDD Conference - Saturday July 10, 2021| date=10 July 2021 |url=https://www.youtube.com/watch?v=-_noEVCR__I |archive-url=https://ghostarchive.org/varchive/youtube/20211221/-_noEVCR__I |archive-date=2021-12-21 |url-status=live|language=en|access-date=2021-07-20}}{{cbignore}}</ref>
== See also ==
|