Unit testing

Source: Wikipedia, the free encyclopedia.

In

procedures, and operating procedures—are tested to determine whether they are fit for use.[1] It is a standard step in development and implementation approaches such as Agile
.

History

Unit testing, as principle for testing separetely smaller parts of large software systems dates back to the searly days of software engineering. In June 1956, H.D. Benington presented at US Navy's Symposium on Advanced Programming Methods for Digital Computers the SAGE project and its 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.[2][3]

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

Unit testing was in those times interactive

capture and replay testing tools. In 1989, Ward Cunningham released SUnit, the first unit test framework. 1997, Kent Beck and Erich Gamma developed and released JUnit, a unit test framework that became popular with Java developers.[8] Google embraced automated testing around 2005–2006.[9]

Unit

Unit would be the smallest component that can be isolated within the complex structure of an app.[10] It could be a function, a subroutine, a method or property.

Unit tests are

software developers to ensure that a section of an application (known as the "unit") meets its design and behaves as intended.[11]
They are often performed by the developer who originally wrote the code, as a first line of defense before conducting further testing.

Procedural programming

In procedural programming, a unit could be an entire module, but it is more commonly an individual function or procedure.

Object-oriented programming

In object-oriented programming, a unit is often an entire interface, such as a class, or an individual method.[12] By writing tests first for the smallest testable units, then the compound behaviors between those, one can build up comprehensive tests for complex applications.[11]

Testing criteria

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

log
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

To isolate issues that may arise, each test case should be tested independently. Substitutes such as method stubs, mock objects,[13] fakes, and test harnesses can be used to assist testing a module in isolation.

Parameterized test

Parameterized tests are a technique that claims to shorten the process of writing and maintaining unit tests . Parameterized tests allow the execution of one test multiple times with different input sets, thus reducing test code duplication. Unlike traditional unit tests, which are usually closed methods and test invariant conditions, parameterized tests take any set of parameters. Parameterized tests are supported by TestNG, JUnit[14] and its .Net counterparts, XUnit and NUnit, as well as in various JavaScript test frameworks.[citation needed
]

Suitable parameters for the unit tests may be supplied 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]

Agile

In the Agile development process, unit testing is done per

user 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.

Advantages

The goal of unit testing is to isolate each part of the program and show that the individual parts are correct.

contract
that the piece of code must satisfy. As a result, it affords several benefits.

Early detection of problems in the development cycle

Unit testing finds problems early in the

development 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

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.[15][16][17] 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.

Test-driven development

In test-driven development (TDD), which is frequently used in both extreme programming and scrum, unit tests are created before the code itself is written. When the tests pass, that code is considered complete. The same unit tests are run against that function frequently as the larger code base is developed either as the code is changed or via an automated process with the build. If the unit tests fail, it is considered to be a bug either in the changed code or the tests themselves. The unit tests then allow the location of the fault or failure to be easily traced. Since the unit tests alert the development team of the problem before handing the code off to testers or clients, potential problems are caught early in the development process.

More frequent releases

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.[18]

Allows for code refactoring

Unit testing allows the programmer to

methods
so that whenever a change causes a fault, it can be identified quickly.

Detects changes which may break a design contract

Unit tests detect changes which may break a design contract.

Reduce uncertainty

Unit testing may reduce uncertainty in the units themselves and can be used in a

bottom-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

Unit testing provides a sort of living documentation of the system. Developers looking to learn what functionality is provided by a unit, and how to use it, can look at the unit tests to gain a basic understanding of the unit's interface (

]

Unit test cases 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 unit test case, in and of itself, documents these critical characteristics, although many software development environments do not rely solely upon code to document the product in development.[citation needed]

When software is developed using a test-driven approach, the combination of writing the unit test to specify the interface plus the refactoring activities performed after the test has passed, 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

Testing will not catch every error in the program, because it cannot evaluate every execution path in any but the most trivial programs. This problem is a superset of the halting problem, which is undecidable. 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 as performance). Unit testing should be done in conjunction with other software 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 of formal methods to proving 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 humans testing 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.[

threads. In addition, code for a unit test is as likely to be buggy as the code it is testing. Fred Brooks in The Mythical Man-Month quotes: "Never go to sea with two chronometers; take one or three."[19] Meaning, if two chronometers
contradict, how do you know which one is correct?

Difficulty in setting up realistic and useful tests

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

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

Requires version control

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 a version 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

It is also essential to implement a sustainable process for ensuring that test case failures are reviewed regularly and addressed immediately.[20] 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

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.[21]

Limitations for testing integration with external systems

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.

better source needed
]

Examples

Java

Here is a set of test cases in

assert
that the Adder interface should have a method called add, with two integer parameters, which returns another integer. It also specifies the behaviour of this method for a small range of values over a number of test methods.

import static org.junit.Assert.assertEquals;

import org.junit.Test;

public class TestAdder {

    // can it add the positive numbers 1 and 1?
    @Test
    public void testSumPositiveNumbersOneAndOne() {
        Adder adder = new AdderImpl();
        assertEquals(2, adder.add(1, 1));
    }

    // can it add the positive numbers 1 and 2?
    @Test
    public void testSumPositiveNumbersOneAndTwo() {
        Adder adder = new AdderImpl();
        assertEquals(3, adder.add(1, 2));
    }

    // can it add the positive numbers 2 and 2?
    @Test
    public void testSumPositiveNumbersTwoAndTwo() {
        Adder adder = new AdderImpl();
        assertEquals(4, adder.add(2, 2));
    }

    // is zero neutral?
    @Test
    public void testSumZeroNeutral() {
        Adder adder = new AdderImpl();
        assertEquals(0, adder.add(0, 0));
    }

    // can it add the negative numbers -1 and -2?
    @Test
    public void testSumNegativeNumbers() {
        Adder adder = new AdderImpl();
        assertEquals(-3, adder.add(-1, -2));
    }

    // can it add a positive and a negative?
    @Test
    public void testSumPositiveAndNegative() {
        Adder adder = new AdderImpl();
        assertEquals(0, adder.add(-1, 1));
    }

    // how about larger numbers?
    @Test
    public void testSumLargeNumbers() {
        Adder adder = new AdderImpl();
        assertEquals(2222, adder.add(1234, 988));
    }
}

In this case the unit tests, having been written first, act as a design document specifying the form and behaviour of a desired solution, but not the implementation details, which are left for the programmer. Following the "do the simplest thing that could possibly work" practice, the easiest solution that will make the test pass is shown below.

interface Adder {
    int add(int a, int b);
}
class AdderImpl implements Adder {
    public int add(int a, int b) {
        return a + b;
    }
}

As executable specifications

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 a UML diagram, but they may be generated from the unit test using automated tools. Most modern languages have free tools (usually available as extensions to IDEs). Free tools, like those based on the xUnit framework, outsource to another system the graphical rendering of a view for human consumption.

Applications

Extreme programming

Unit testing is the cornerstone of extreme programming, which relies on an automated unit 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 for test-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 and

regression test
.

Unit testing is also critical to the concept of

Emergent Design. As emergent design is heavily dependent upon refactoring, unit tests are an integral component.[citation needed
]

Unit testing frameworks

Unit testing frameworks are most often third-party products that are not distributed as part of the compiler suite. They help simplify the process of unit testing, having been developed for a wide variety of languages.

It is generally possible to perform unit testing without the support of a specific framework by writing client code that exercises the units under test and uses

barrier to entry for the adoption of unit testing; having scant unit tests is hardly better than having none at all, whereas once a framework is in place, adding unit tests becomes relatively easy.[23]
In some frameworks many advanced unit test features are missing or must be hand-coded.

Language-level unit testing support

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 for if and while 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

References

  1. ^ .
  2. ^ 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.{{cite journal}}: CS1 maint: date and year (link)
  3. ^ .
  4. .
  5. .
  6. ^ 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{{cite book}}: CS1 maint: date and year (link)
  7. ISSN 0163-5999
    .
  8. .
  9. .
  10. ^ "Visual Studio 2003 General". VS2003_General_en-us.pdf: Microsoft Corporation. 2016. p. 4405. Retrieved 6 February 2024.{{cite web}}: CS1 maint: location (link)
  11. ^ .
  12. ^ Xie, Tao. "Towards a Framework for Differential Unit Testing of Object-Oriented Programs" (PDF). Archived from the original (PDF) on 23 July 2012. Retrieved 23 July 2012.
  13. ^ Fowler, Martin (2 January 2007). "Mocks aren't Stubs". Retrieved 1 April 2008.
  14. ^ Gulati & Sharma 2017, pp. 133–137, Chapter §7 JUnit 5 Extension Model - Parameterized Test.
  15. doi:10.1109/32.6191. Archived from the original
    (PDF) on 9 October 2016. Retrieved 13 May 2016.
  16. ^ "Test Early and Often". Microsoft.
  17. ^ "Prove It Works: Using the Unit Test Framework for Software Testing and Validation". National Instruments. 21 August 2017.
  18. ^ Erik (10 March 2023). "You Still Don't Know How to Do Unit Testing (and Your Secret is Safe with Me)". Stackify. Retrieved 10 March 2023.
  19. .
  20. ^ daVeiga, Nada (6 February 2008). "Change Code Without Fear: Utilize a regression safety net". Retrieved 8 February 2008.
  21. ^ Kucharski, Marek (23 November 2011). "Making Unit Testing Practical for Embedded Development". Retrieved 20 July 2020.
  22. ^ "Unit Tests And Databases". Retrieved 29 January 2024.
  23. ^ Bullseye Testing Technology (2006–2008). "Intermediate Coverage Goals". Retrieved 24 March 2009.
  24. ^ "Unit Tests - D Programming Language". D Programming Language. D Language Foundation. Retrieved 5 August 2017.
  25. ^ Steve Klabnik and Carol Nichols, with contributions from the Rust Community (2015–2023). "How to Write Tests". Retrieved 21 August 2023.
  26. ^ "Crystal Spec". crystal-lang.org. Retrieved 18 September 2017.
  27. ^ "testing - The Go Programming Language". golang.org. Retrieved 3 December 2013.
  28. ^ "Unit Testing · The Julia Language". docs.julialang.org. Retrieved 15 June 2022.
  29. ^ Python Documentation (2016). "unittest -- Unit testing framework". Retrieved 18 April 2016.
  30. ^ Welsh, Noel; Culpepper, Ryan. "RackUnit: Unit Testing". PLT Design Inc. Retrieved 26 February 2019.
  31. ^ Welsh, Noel; Culpepper, Ryan. "RackUnit Unit Testing package part of Racket main distribution". PLT Design Inc. Retrieved 26 February 2019.
  32. ^ "Minitest (Ruby 2.0)". Ruby-Doc.org.
  33. ^ Sierra, Stuart. "API for clojure.test - Clojure v1.6 (stable)". Retrieved 11 February 2015.
  34. ^ "Pester Framework". GitHub. Retrieved 28 January 2016.

Further reading

External links