Jump to content

Continuous test-driven development: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Tags: Reverted Mobile edit Mobile web edit
Lukkea (talk | contribs)
Undid revision 919321963 by 93.175.229.21 (talk) because that was added by the author of PyCrunch and is in violation of Conflict of Interest Guidance https://en.wikipedia.org/wiki/Wikipedia:Conflict_of_interest
Line 14: Line 14:
* Mighty-Moose - packaged version of AutoTest.NET<ref>http://www.continuoustests.com/</ref>
* Mighty-Moose - packaged version of AutoTest.NET<ref>http://www.continuoustests.com/</ref>
* Wallaby.js - continuous testing for JavaScript/TypeScript/CoffeeScript<ref>{{Cite web|url=http://wallabyjs.com/|title=Wallaby - Integrated Continuous Test Runner for JavaScript|website=wallabyjs.com}}</ref>
* Wallaby.js - continuous testing for JavaScript/TypeScript/CoffeeScript<ref>{{Cite web|url=http://wallabyjs.com/|title=Wallaby - Integrated Continuous Test Runner for JavaScript|website=wallabyjs.com}}</ref>
* PyCrunch — continuous testing tool for Python, with plugin for PyCharm<ref>{{Cite web|url=https://pycrunch.com/|title=PyCrunch TDD Assistant for Python|website=pycrunch.com}}</ref>


== References ==
== References ==

Revision as of 09:47, 13 November 2020

Continuous test-driven development (CTDD)[1] is a software development practice that extends test-driven development (TDD) by means of automatic test execution in the background, sometimes called continuous testing.[2]

Practice

In CTDD the developer writes a test first but is not forced to execute the tests manually. The tests are run automatically by a continuous testing tool running in the background. This technique can potentially reduce the time waste resulting from manual test execution by eliminating the need for the developer to start the test after each phase of the normal TDD practice: after writing the (initially failing) test, after producing the minimal amount of code for the test to pass and after refactoring the code.

Continuous testing tools

  • Infinitest open source Eclipse and IntelliJ plug-in[3]
  • NCrunch commercial continuous testing plug-in for Visual Studio[4]
  • Autotest - continuous testing for Ruby[5]
  • AutoTest.NET - autotest for .NET[6]
  • AutoTest.NET fork for CTDD[7]
  • Mighty-Moose - packaged version of AutoTest.NET[8]
  • Wallaby.js - continuous testing for JavaScript/TypeScript/CoffeeScript[9]

References

  1. ^ Madeyski, L. and Kawalerowicz, M. Continuous Test-Driven Development - A Novel Agile Software Development Practice and Supporting Tool, Proceedings of the 8th International Conference on Evaluation of Novel Approaches to Software Engineering (ENASE), 2013, Angers, France, 4–6 July 2013: p.260-267.
  2. ^ Saff, D. and Ernst, M. D. Reducing wasted development time via continuous testing, Fourteenth International Symposium on Software Reliability Engineering, 2003, Denver, USA, 17–20 November 2003: p.281-292.
  3. ^ "Infinitest". infinitest.github.io.
  4. ^ "NCrunch for Visual Studio". www.ncrunch.net.
  5. ^ "Save a file, autotest will run the matching tests! (Autotest without ZenTest): grosser/autotest". November 10, 2018 – via GitHub.
  6. ^ "AutoTest.NET is a tool for automatically running builds and test in the background when code changes. This practice gives you immediate feedback and helps facilitate real test driven development. -." February 19, 2019 – via GitHub.
  7. ^ "AutoTest.NET is a tool for automatically running builds and test in the background when code changes. This practice gives you immediate feedback and helps facilitate real test driven development. -." March 27, 2018 – via GitHub.
  8. ^ http://www.continuoustests.com/
  9. ^ "Wallaby - Integrated Continuous Test Runner for JavaScript". wallabyjs.com.