Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Unit testing

From Wikipedia, the free encyclopedia
(Redirected fromUnit test)
Validating the behavior of isolated source code

Part of a series on
Software development

Unit testing,a.k.a.component ormodule testing, is a form ofsoftware testing by which isolatedsource code is tested to validate expected behavior.[1]

Unit testing describes tests that are run at the unit-level to contrast testing at theintegration orsystem level.[2]

History

[edit]

Unit testing, as a principle for testing separately smaller parts of large software systems, dates back to the early days of software engineering. In June 1956 at US Navy's Symposium on Advanced Programming Methods for Digital Computers, H.D. Benington presented theSAGE project. It featured a specification-based approach where the coding phase was followed by "parameter testing" to validate component subprograms against their specification, followed then by an "assembly testing" for parts put together.[3][4]

In 1964, a similar approach is described for the software of theMercury project, where individual units developed by different programmes underwent "unit tests" before being integrated together.[5] In 1969, testing methodologies appear more structured, with unit tests, component tests and integration tests collectively validating individual parts written separately and their progressive assembly into larger blocks.[6] Some public standards adopted in the late 1960s, such as MIL-STD-483[7] and MIL-STD-490, contributed further to a wide acceptance of unit testing in large projects.

Unit testing was in those times interactive[4] or automated,[8] using either coded tests or capture and replay testing tools. In 1989,Kent Beck described a testing framework forSmalltalk (later calledSUnit) in "Simple Smalltalk Testing: With Patterns". In 1997,Kent Beck andErich Gamma developed and releasedJUnit, a unit test framework that became popular withJava developers.[9]Google embraced automated testing around 2005–2006.[10]

Unit

[edit]

A unit is defined as a single behaviour exhibited by the system under test (SUT), usually corresponding to a requirement[definition needed]. While a unit may correspond to a single function or module (inprocedural programming) or a single method or class (inobject-oriented programming), functions/methods and modules/classes do not necessarily correspond to units. From the system requirements perspective only the perimeter of the system is relevant, thus only entry points to externally visible system behaviours define units.[clarification needed][11]

Execution

[edit]

Unit tests can be performed manually or viaautomated test execution. Automated tests include benefits such as: running tests often, running tests without staffing cost, and consistent and repeatable testing.

Testing is often performed by the programmer who writes and modifies the code under test.Unit testing may be viewed as part of the process of writing code.

Testing criteria

[edit]
icon
This sectionneeds additional citations forverification. Please helpimprove this article byadding citations to reliable sources in this section. Unsourced material may be challenged and removed.(September 2019) (Learn how and when to remove this message)

During development, a programmer may code criteria, or results that are known to be good, into the test to verify the unit's correctness.

During test execution, frameworkslog tests that fail any criterion and report them in a summary.

For this, the most commonly used approach is test - function - expected value.

Test case

[edit]
This paragraph is an excerpt fromTest case (software).[edit]
Insoftware engineering, atest case is a specification of the inputs, execution conditions, testing procedure, and expected results that define a single test to be executed to achieve a particularsoftware testing objective, such as to exercise a particular program path or to verify compliance with a specific requirement.[12] Test cases underlie testing that is methodical rather than haphazard. Abattery of test cases can be built to produce the desired coverage of the software being tested. Formally defined test cases allow the same tests to be run repeatedly against successive versions of the software, allowing for effective and consistentregression testing.[13]

Test double

[edit]
This paragraph is an excerpt fromTest double.[edit]
Atest double issoftware used insoftwaretest automation that satisfies adependency so that the test need not depend on production code. A test double provides functionality via aninterface that the software under test cannot distinguish from production code.

Parameterized test

[edit]

Aparameterized test is a test that accepts a set of values that can be used to enable the test to run with multiple, different input values. A testing framework that supports parametrized tests supports a way to encode parameter sets and to run the test with each set.

Use of parametrized tests can reduce test code duplication.

Parameterized tests are supported byTestNG,JUnit,[14]XUnit andNUnit, as well as in various JavaScript test frameworks.[citation needed]

Parameters for the unit tests may be coded manually or in some cases are automatically generated by the test framework. In recent years support was added for writing more powerful (unit) tests, leveraging the concept of theories, test cases that execute the same steps, but using test data generated at runtime, unlike regular parameterized tests that use the same execution steps with input sets that are pre-defined.[citation needed]

Code visibility

[edit]

Test code needs access to the code it is testing, but testing should not compromise normal design goals such asinformation hiding, encapsulation and theseparation of concerns. To enable access to code not exposed in the external API, unit tests can be located in the same project ormodule as the code being tested.

Inobject oriented design this still may not provide access to private data and methods. Therefore, extra work may be necessary for unit tests. InJava and other languages, a developer can usereflection to access private fields and methods.[15] Alternatively, aninner class can be used to hold the unit tests so they have visibility of the enclosing class's members and attributes. In the.NET Framework and some other programming languages,partial classes may be used to expose private methods and data for the tests to access.

It is important that code solely for accommodating tests does not remain in the production code. InC and other languages,compiler directives such as#if DEBUG ... #endif can be placed around such additional classes and indeed all other test-related code to prevent them being compiled into the released code. This means the released code is not exactly the same as what was unit tested. The regular running of fewer but more comprehensive, end-to-end, integration tests on the final release build can ensure (among other things) that no production code exists that subtly relies on aspects of the test harness.

There is some debate among developers, as to whether it is wise to test private methods and data anyway. Some argue that private members are a mere implementation detail that may change, and should be allowed to do so without breaking numbers of tests. Thus it should be sufficient to test any class through its public interface or through its subclass interface, which some languages call the "protected" interface.[16] Others say that crucial aspects of functionality may be implemented in private methods and testing them directly offers advantage of smaller and more direct unit tests.[17][18]

Agile

[edit]
Main article:Agile software development

Sometimes, in the agile software development, unit testing is done peruser story and comes in the later half of the sprint after requirements gathering and development are complete. Typically, the developers or other members from the development team, such asconsultants, will write step-by-step 'test scripts' for the developers to execute in the tool. Test scripts are generally written to prove the effective and technical operation of specific developed features in the tool, as opposed to full fledged business processes that would be interfaced by theend user, which is typically done duringuser acceptance testing. If the test-script can be fully executed from start to finish without incident, the unit test is considered to have "passed", otherwise errors are noted and the user story is moved back to development in an 'in-progress' state. User stories that successfully pass unit tests are moved on to the final steps of the sprint - Code review, peer review, and then lastly a 'show-back' session demonstrating the developed tool to stakeholders.

Test-driven development

[edit]
Main article:Test-driven development

In test-driven development (TDD), unit tests are written before the related production code is written. Starting with a failing test, then addsjust enough production code to make the test pass, then refactors the code as makes sense and then repeats by adding another failing test.

Value

[edit]

Unit testing is intended to ensure that the units meet theirdesign and behave as intended.[19]

By writing tests first for the smallest testable units, then the compound behaviors between those, one can build up comprehensive tests for complex applications.[19]

One goal of unit testing is to isolate each part of the program and show that the individual parts are correct.[1] A unit test provides a strict, writtencontract that the piece of code must satisfy.

Early detection of problems in the development cycle

[edit]

Unit testing finds problems early in thedevelopment cycle. This includes both bugs in the programmer's implementation and flaws or missing parts of the specification for the unit. The process of writing a thorough set of tests forces the author to think through inputs, outputs, and error conditions, and thus more crisply define the unit's desired behavior.[citation needed]

Reduced cost

[edit]

The cost of finding a bug before coding begins or when the code is first written is considerably lower than the cost of detecting, identifying, and correcting the bug later. Bugs in released code may also cause costly problems for the end-users of the software.[20][21][22] Code can be impossible or difficult to unit test if poorly written, thus unit testing can force developers to structure functions and objects in better ways.

More frequent releases

[edit]

Unit testing enables more frequent releases in software development. By testing individual components in isolation, developers can quickly identify and address issues, leading to faster iteration and release cycles.[23]

Allows for code refactoring

[edit]

Unit testing allows the programmer torefactor code or upgrade system libraries at a later date, and make sure the module still works correctly (e.g., inregression testing). The procedure is to write test cases for allfunctions andmethods so that whenever a change causes a fault, it can be identified quickly.

Detects changes which may break a design contract

[edit]

Unit tests detect changes which may break adesign contract.

Reduce uncertainty

[edit]

Unit testing may reduce uncertainty in the units themselves and can be used in abottom-up testing style approach. By testing the parts of a program first and then testing the sum of its parts,integration testing becomes much easier.[citation needed]

Documentation of system behavior

[edit]

Some programmers contend that unit tests provide a form of documentation of the code. Developers wanting to learn what functionality is provided by a unit, and how to use it, can review the unit tests to gain an understanding of it.[citation needed]

Test cases can embody characteristics that are critical to the success of the unit. These characteristics can indicate appropriate/inappropriate use of a unit as well as negative behaviors that are to be trapped by the unit. A test case documents these critical characteristics, although many software development environments do not rely solely upon code to document the product in development.[citation needed]

In some processes, the act of writing tests and the code under test, plus associated refactoring, may take the place of formal design. Each unit test can be seen as a design element specifying classes, methods, and observable behavior.[citation needed]

Limitations and disadvantages

[edit]

Testing will not catch every error in the program, because it cannot evaluate every execution path in any but the most trivial programs. Thisproblem is a superset of thehalting problem, which isundecidable. The same is true for unit testing. Additionally, unit testing by definition only tests the functionality of the units themselves. Therefore, it will not catch integration errors or broader system-level errors (such as functions performed across multiple units, or non-functional test areas such asperformance). Unit testing should be done in conjunction with othersoftware testing activities, as they can only show the presence or absence of particular errors; they cannot prove a complete absence of errors. To guarantee correct behavior for every execution path and every possible input, and ensure the absence of errors, other techniques are required, namely the application offormal methods to prove that a software component has no unexpected behavior.[citation needed]

An elaborate hierarchy of unit tests does not equal integration testing. Integration with peripheral units should be included in integration tests, but not in unit tests.[citation needed] Integration testing typically still relies heavily on humanstesting manually; high-level or global-scope testing can be difficult to automate, such that manual testing often appears faster and cheaper.[citation needed]

Software testing is a combinatorial problem. For example, every Boolean decision statement requires at least two tests: one with an outcome of "true" and one with an outcome of "false". As a result, for every line of code written, programmers often need 3 to 5 lines of test code.[citation needed] This obviously takes time and its investment may not be worth the effort. There are problems that cannot easily be tested at all – for example those that arenondeterministic or involve multiplethreads. In addition, code for a unit test is as likely to be buggy as the code it is testing.Fred Brooks inThe Mythical Man-Month quotes: "Never go to sea with two chronometers; take one or three."[24] Meaning, if twochronometers contradict, how do you know which one is correct?

Difficulty in setting up realistic and useful tests

[edit]

Another challenge related to writing the unit tests is the difficulty of setting up realistic and useful tests. It is necessary to create relevant initial conditions so the part of the application being tested behaves like part of the complete system. If these initial conditions are not set correctly, the test will not be exercising the code in a realistic context, which diminishes the value and accuracy of unit test results.[citation needed]

Requires discipline throughout the development process

[edit]

To obtain the intended benefits from unit testing, rigorous discipline is needed throughout the software development process.

Requires version control

[edit]

It is essential to keep careful records not only of the tests that have been performed, but also of all changes that have been made to the source code of this or any other unit in the software. Use of aversion control system is essential. If a later version of the unit fails a particular test that it had previously passed, the version-control software can provide a list of the source code changes (if any) that have been applied to the unit since that time.[citation needed]

Requires regular reviews

[edit]

It is also essential to implement a sustainable process for ensuring that test case failures are reviewed regularly and addressed immediately.[25] If such a process is not implemented and ingrained into the team's workflow, the application will evolve out of sync with the unit test suite, increasing false positives and reducing the effectiveness of the test suite.

Limitations for embedded system software

[edit]

Unit testing embedded system software presents a unique challenge: Because the software is being developed on a different platform than the one it will eventually run on, you cannot readily run a test program in the actual deployment environment, as is possible with desktop programs.[26]

Limitations for testing integration with external systems

[edit]

Unit tests tend to be easiest when a method has input parameters and some output. It is not as easy to create unit tests when a major function of the method is to interact with something external to the application. For example, a method that will work with a database might require a mock up of database interactions to be created, which probably won't be as comprehensive as the real database interactions.[27][better source needed]

Examples

[edit]

JUnit

[edit]

Below is an example of a JUnit test suite. It focuses on theAdder class.

classAdder{publicintadd(inta,intb){returna+b;}}

The test suite usesassert statements to verify the expected result of various input values to thesum method.

import staticorg.junit.Assert.assertEquals;importorg.junit.Test;publicclassAdderUnitTest{@TestpublicvoidsumReturnsZeroForZeroInput(){Adderadder=newAdder();assertEquals(0,adder.add(0,0));}@TestpublicvoidsumReturnsSumOfTwoPositiveNumbers(){Adderadder=newAdder();assertEquals(3,adder.add(1,2));}@TestpublicvoidsumReturnsSumOfTwoNegativeNumbers(){Adderadder=newAdder();assertEquals(-3,adder.add(-1,-2));}@TestpublicvoidsumReturnsSumOfLargeNumbers(){Adderadder=newAdder();assertEquals(2222,adder.add(1234,988));}}

As executable specifications

[edit]
icon
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(September 2019) (Learn how and when to remove this message)

Using unit-tests as a design specification has one significant advantage over other design methods: The design document (the unit-tests themselves) can itself be used to verify the implementation. The tests will never pass unless the developer implements a solution according to the design.

Unit testing lacks some of the accessibility of a diagrammatic specification such as aUML diagram, but they may be generated from the unit test using automated tools. Most modern languages have free tools (usually available as extensions toIDEs). Free tools, like those based on thexUnit framework, outsource to another system the graphical rendering of a view for human consumption.[28]

Applications

[edit]

Extreme programming

[edit]

Unit testing is the cornerstone ofextreme programming, which relies on an automatedunit testing framework. This automated unit testing framework can be either third party, e.g.,xUnit, or created within the development group.

Extreme programming uses the creation of unit tests fortest-driven development. The developer writes a unit test that exposes either a software requirement or a defect. This test will fail because either the requirement isn't implemented yet, or because it intentionally exposes a defect in the existing code. Then, the developer writes the simplest code to make the test, along with other tests, pass.

Most code in a system is unit tested, but not necessarily all paths through the code. Extreme programming mandates a "test everything that can possibly break" strategy, over the traditional "test every execution path" method. This leads developers to develop fewer tests than classical methods, but this isn't really a problem, more a restatement of fact, as classical methods have rarely ever been followed methodically enough for all execution paths to have been thoroughly tested.[citation needed] Extreme programming simply recognizes that testing is rarely exhaustive (because it is often too expensive and time-consuming to be economically viable) and provides guidance on how to effectively focus limited resources.

Crucially, the test code is considered a first class project artifact in that it is maintained at the same quality as the implementation code, with all duplication removed. Developers release unit testing code to the code repository in conjunction with the code it tests. Extreme programming's thorough unit testing allows the benefits mentioned above, such as simpler and more confident code development andrefactoring, simplified code integration, accurate documentation, and more modular designs. These unit tests are also constantly run as a form ofregression test.

Unit testing is also critical to the concept ofEmergent Design. As emergent design is heavily dependent upon refactoring, unit tests are an integral component.[citation needed]

Automated testing frameworks

[edit]

An automated testing framework provides features for automating test execution and can accelerate writing and running tests. Frameworks have been developed fora wide variety of programming languages.

Generally, frameworks arethird-party; not distributed with a compiler orintegrated development environment (IDE).

Tests can be written without using a framework to exercise the code under test usingassertions,exception handling, and othercontrol flow mechanisms to verify behavior and report failure. Some note that testing without a framework is valuable since there is abarrier to entry for the adoption of a framework; that having some tests is better than none, but once a framework is in place, adding tests can be easier.[29]

In some frameworks advanced test features are missing and must be hand-coded.

Language-level unit testing support

[edit]

Some programming languages directly support unit testing. Their grammar allows the direct declaration of unit tests without importing a library (whether third party or standard). Additionally, the Boolean conditions of the unit tests can be expressed in the same syntax as Boolean expressions used in non-unit test code, such as what is used forif andwhile statements.

Languages with built-in unit testing support include:

Languages with standard unit testing framework support include:

Some languages do not have built-in unit-testing support but have established unit testing libraries or frameworks. These languages include:

See also

[edit]

References

[edit]
  1. ^abKolawa, Adam; Huizinga, Dorota (2007).Automated Defect Prevention: Best Practices in Software Management. Wiley-IEEE Computer Society Press. p. 75.ISBN 978-0-470-04212-0.
  2. ^Amazon Web Services (AWS). (n.d.).What is Unit Testing?. Retrieved May 2, 2025, from[1](https://aws.amazon.com/what-is/unit-testing/)
  3. ^Benington, Herbert D. (1956). "Production of large computer programs".Proceedings of the Symposium on Advanced Programming Methods for Digital Computers, Washington, D.C., June 28–29, 1956. Office of Naval Research, Department of the Navy:15–28.
  4. ^abBenington, H. D. (1 March 1987)."Production of large computer programs (reprint of the 1956 paper with an updated foreword)".Proceedings of the 9th International Conference on Software Engineering. ICSE '87. Washington, DC, USA: IEEE Computer Society Press:299–310.ISBN 978-0-89791-216-7.
  5. ^Donegan, James J.; Packard, Calvin; Pashby, Paul (1 January 1964)."Experiences with the goddard computing system during manned spaceflight missions".Proceedings of the 1964 19th ACM national conference. ACM '64. New York, NY, USA: Association for Computing Machinery. pp. 12.101 –12.108.doi:10.1145/800257.808889.ISBN 978-1-4503-7918-2.{{cite book}}:ISBN / Date incompatibility (help)
  6. ^Zimmerman, Norman A. (26 August 1969)."System integration as a programming function".Proceedings of the 1969 24th national conference. ACM '69. New York, NY, USA: Association for Computing Machinery. pp. 459–467.doi:10.1145/800195.805951.ISBN 978-1-4503-7493-4.
  7. ^MIL-STD-483 Military standard: configuration management practices for systems, equipment, munitions, and computer programs. United states, Department of Defense. 31 December 1970. pp. Section 3.4.7.2.The contractor shall then code and test software Units, and enter the source and object code, and associated listings of each successfully tested Unit into the Developmental Configuration
  8. ^Tighe, Michael F. (1 January 1978)."The value of a proper software quality assurance methodology".ACM SIGMETRICS Performance Evaluation Review.7 (3–4):165–172.doi:10.1145/1007775.811118.ISSN 0163-5999.
  9. ^Gulati, Shekhar (2017).Java Unit Testing with JUnit 5 : Test Driven Development with JUnit 5. Rahul Sharma. Berkeley, CA: Apress. p. 8.ISBN 978-1-4842-3015-2.OCLC 1012347252.
  10. ^Winters, Titus (2020).Software engineering at Google : lessons learned from programming over time. Tom Manshreck, Hyrum Wright (1st ed.). Sebastopol, CA: O'Reilly.ISBN 978-1-4920-8274-3.OCLC 1144086840.
  11. ^Beck, Kent (2002).Test-Driven Development by Example. Addison-Wesley.ISBN 978-0321146533.
  12. ^Systems and software engineering -- Vocabulary. Iso/Iec/IEEE 24765:2010(E). 1 December 2010. pp. 1–418.doi:10.1109/IEEESTD.2010.5733835.ISBN 978-0-7381-6205-8.
  13. ^Kaner, Cem (May 2003)."What Is a Good Test Case?"(PDF).STAR East: 2.
  14. ^Gulati & Sharma 2017, pp. 133–137, Chapter §7 JUnit 5 Extension Model - Parameterized Test.
  15. ^Burton, Ross (12 November 2003)."Subverting Java Access Protection for Unit Testing". O'Reilly Media, Inc. Retrieved12 August 2009.
  16. ^van Rossum, Guido; Warsaw, Barry (5 July 2001)."PEP 8 -- Style Guide for Python Code". Python Software Foundation. Retrieved6 May 2012.
  17. ^Newkirk, James (7 June 2004)."Testing Private Methods/Member Variables - Should you or shouldn't you". Microsoft Corporation. Retrieved12 August 2009.
  18. ^Stall, Tim (1 March 2005)."How to Test Private and Protected methods in .NET". CodeProject. Archived fromthe original on 3 September 2009. Retrieved12 August 2009.
  19. ^abHamill, Paul (2004).Unit Test Frameworks: Tools for High-Quality Software Development. O'Reilly Media, Inc.ISBN 9780596552817.
  20. ^Boehm, Barry W.; Papaccio, Philip N. (October 1988)."Understanding and Controlling Software Costs"(PDF).IEEE Transactions on Software Engineering.14 (10):1462–1477.doi:10.1109/32.6191. Archived fromthe original(PDF) on 9 October 2016. Retrieved13 May 2016.
  21. ^"Test Early and Often". Microsoft.
  22. ^"Prove It Works: Using the Unit Test Framework for Software Testing and Validation".National Instruments. 21 August 2017.
  23. ^Erik (10 March 2023)."You Still Don't Know How to Do Unit Testing (and Your Secret is Safe with Me)".Stackify. Retrieved10 March 2023.
  24. ^Brooks, Frederick J. (1995) [1975].The Mythical Man-Month. Addison-Wesley. p. 64.ISBN 978-0-201-83595-3.
  25. ^daVeiga, Nada (6 February 2008)."Change Code Without Fear: Utilize a regression safety net". Retrieved8 February 2008.
  26. ^Kucharski, Marek (23 November 2011)."Making Unit Testing Practical for Embedded Development". Retrieved20 July 2020.
  27. ^"Unit Tests And Databases". Retrieved29 January 2024.
  28. ^GeeksforGeeks. (2024).Unit Testing. Retrieved May 2, 2025, from[2](https://www.geeksforgeeks.org/unit-testing-software-testing/)
  29. ^Bullseye Testing Technology (2006–2008)."Intermediate Coverage Goals". Retrieved24 March 2009.
  30. ^"Unit Tests - D Programming Language".D Programming Language. D Language Foundation. Retrieved5 August 2017.
  31. ^Steve Klabnik and Carol Nichols, with contributions from the Rust Community (2015–2023)."How to Write Tests". Retrieved21 August 2023.
  32. ^"Crystal Spec". crystal-lang.org. Retrieved18 September 2017.
  33. ^"testing - The Go Programming Language". golang.org. Retrieved3 December 2013.
  34. ^"Unit Testing · The Julia Language". docs.julialang.org. Retrieved15 June 2022.
  35. ^Python Documentation (2016)."unittest -- Unit testing framework". Retrieved18 April 2016.
  36. ^Welsh, Noel; Culpepper, Ryan."RackUnit: Unit Testing". PLT Design Inc. Retrieved26 February 2019.
  37. ^Welsh, Noel; Culpepper, Ryan."RackUnit Unit Testing package part of Racket main distribution". PLT Design Inc. Retrieved26 February 2019.
  38. ^"Minitest (Ruby 2.0)". Ruby-Doc.org.
  39. ^Sierra, Stuart."API for clojure.test - Clojure v1.6 (stable)". Retrieved11 February 2015.
  40. ^"Pester Framework".GitHub. Retrieved28 January 2016.

Further reading

[edit]
  • Feathers, Michael C. (2005).Working Effectively with Legacy Code. Upper Saddle River, NJ: Prentice Hall Professional Technical Reference.ISBN 978-0131177055.
  • Gulati, Shekhar; Sharma, Rahul (2017).Java Unit Testing with JUnit 5.Apress.

External links

[edit]
Test levels
Test types,
techniques,
tactics
[x]-box
style
See also
Retrieved from "https://en.wikipedia.org/w/index.php?title=Unit_testing&oldid=1319242598"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp