SlideShare a Scribd company logo
Unit Testing
08/11/2011
Softjourn Inc.




Unit Testing

  Anatoliy Okhotnikov
  Softjourn Inc.
Agenda
●   What is Unit Testing?
●   Benefits
●   What is Test Driven Development?
●   What is Behavior Driven Development?
●   Categories of (Unit) Tests / Software Testing
    Pyramid, Frameworks
●   C++, Java, .NET, Perl, PHP frameworks
●   Unit-testing Zend Framework application
What is Unit Testing?
●   Ford new engine test area
●   Special test harness that
    connects a gas and oil line
●   For the output, a measuring
    device is connected to the
    drive shaft that comes
    directly out of the engine
●   Engine starts and revs up
●   Within about 5 minutes the
    computer is able to analyze
    the torque curve, gas
    usage, and oil usage
What is Unit Testing?
●   In computer programming, unit testing is a method by which
    individual units of source code are tested to determine if they
    are fit for use. A unit is the smallest testable part of an
    application. In procedural programming a unit may be an
    individual function or procedure. Unit tests are created by
    programmers or occasionally by white box testers.
●   Ideally, each test case is independent from the others:
    substitutes like method stubs, mock objects, fakes and test
    harnesses can be used to assist testing a module in
    isolation. Unit tests are typically written and run by software
    developers to ensure that code meets its design and
    behaves as intended. Its implementation can vary from
    being very manual (pencil and paper) to being formalized as
    part of build automation
Benefits
    The goal of unit testing is to isolate each part of the program and
    show that the individual parts are correct. A unit test provides a
    strict, written contract that the piece of code must satisfy. As a
    result, it affords several benefits.
●   Find problems early (in the development cycle)
●   Facilitates change (refactor, regression, etc.)
●   Simplifies integration (parts, sum & integration)
●   Documentation (live, understand API)
●   Design (TDD, no formal design, design element)
What is Test Driven Development?
●   a software development process that
    relies on the repetition of a very short
    development cycle: first the developer
    writes a failing automated test case         Test
    that defines a desired improvement or
    new function, then produces code to
    pass that test and finally refactors the        Code
    new code to acceptable standards.
●   Kent Beck, who is credited with            Refactor
    having developed or 'rediscovered'
    the technique, stated in 2003 that
    TDD encourages simple designs and
    inspires confidence.
What is Behavior Driven Development?
●   An agile software development technique that
    encourages collaboration between developers, QA
    and non-technical or business participants in a
    software project.
●   A response to Test Driven Development, including
    Acceptance Test or Customer Test Driven
    Development practices as found in Extreme
    Programming.
●   It extends TDD by writing test cases in a natural
    language that non-programmers can read.
●   With a Feature Injection, BDD covers the analysis
    space and provides a full treatment of the software
    lifecycle from vision through to code and release.
Test Categories
Categories of (Unit) Tests
●   Small: Unit Tests
    ●   Check conditional logic in the code
    ●   A debugger should not be required in case of failure
●   Medium: Functional Tests
    ●   Check whether the interfaces between classes
        abide by their contracts
●   Large: End-to-End Tests
    ●   Check for “wiring bugs”
Software Testing Pyramid
Frameworks
C++              51
C                39
                      Wikipedia:
JavaScript       29   373 testing
Java             27   frameworks in
.NET             23
PHP              11   70 programming
Common Lisp      11   languages
Objective-C       9
Perl              9
ActionScript /    9
Adobe Flex
C++
●   CppUnit       ●   Differences in compilers,
                      platforms, and programming
●   Boost.Test
                      styles. C++ is not exactly a
●   CppUnitLite       clean, fully supported
●   NanoCppUnit       language, with one coding
                      standard.
●   Unit++
                  ●   List of features you want
●   CxxTest
                  ●   Timing support: individual/total
●   Unit Test++
                  ●   Installation, Creation,
                      Modification, etc.
UnitTest++
●   http://unittest-cpp.sourceforge.net/UnitTest++.html
●   Lightweight unit testing framework for C++
●   Designed to do test-driven development on a
    wide variety of platforms
●   Simplicity, portability, speed, and small footprint
●   ANSI portable C++: Win32, Linux, Mac OS X
●   Written and maintained by Charles Nicholson
    and Noel Llopis “C++ For Game Programmers”
UnitTest++ Example
●   a minimal C++ program to run a failing test
    through UnitTest++




    UnitTest++$ g++ -I./src -c test.cpp -o test.o
    UnitTest++$ g++ test.o libUnitTest++.a -o test
    UnitTest++$ ./test
    test.cpp:6: error: Failure in FailSpectacularly: false
    FAILURE: 1 out of 1 tests failed (1 failures).
    Test time: 0.00 seconds.
Java
●   JUnit        ●   Java has an abundance of
                     libraries that can help with the
●   TestNG
                     development of your tests cases
●   JTest        ●   Unit tests are fairly easy to write
●   Cactus           and have very rapid performance,
●   Mockito          so it's not going to take you long
                     to run them.
●   JWalk
                 ●   Don't Sacrifice Design for the
●   SureAssert       Sake of Testing
                 ●   Use Statistical Testing for Non-
                     deterministic Code
JUnit
●   http://junit.sourceforge.net/
●   JUnit is a simple framework to code repeatable
    tests written by Erich Gamma and Kent Beck. It
    is used by the developer who implements unit
    tests in Java. Most famous of XUnits, JUnit is
    Open Source Software.
●   Annotate a method with @org.junit.Test
●   When you want to check a value, import static
    org.junit.Assert.*, call assertTrue() and pass a
    boolean that is true if the test succeeds
JUnit Example
●   a minimal Java class to run a successful test




    junit$ javac -cp junit-4.10.jar MyFirstTest.java
    junit$ java -cp junit-4.10.jar:. org.junit.runner.JUnitCore
    MyFirstTest
    JUnit version 4.10
    Time: 0.004
    OK (1 test)
.NET
●   csUnit      ●   There are a wide variety of unit
                    testing tools available for .NET.
●   MSTest
                    Fortunately, the structure of unit
●   NUnit           tests is similar within most of the
●   NUnitAsp        frameworks.
●   .TEST
                ●   NUnit has historically been one of
                    the most popular frameworks
●   xUnit.net
                ●   There are 2 main parts of a unit
●   Visual          testing system, the testing
    Studio          framework and a test runner.
NUnit
●   http://www.nunit.org/ initially ported from JUnit
●   written entirely in C# and has been completely
    redesigned to take advantage of many .NET
    language features, for example custom
    attributes and other reflection related
    capabilities.
●   NUnit has two different ways to run your tests.
    The console runner, nunit-console.exe, is the
    fastest to launch, but is not interactive. The gui
    runner, nunit.exe, is a Windows Forms
    application that allows you to work selectively
    with your tests and provides graphical feedback
NUnit Example
●   [TestFixture] is the
    way to indicate that
    the class contains
    test code.
●   [Test] is an
    indication that it is a
    test method.
●   TransferFunds : expected
    <250> but was <150>
Perl
●   Test::More    ●   Put your tests in t/ and follow the
                      convention of ##-name.t.
●   TAP
                  ● Create a "Smoke Test" script and
●   Test::Harness
                    a bunch of generic tests
●   Test::Unit    ● Its as simple as deciding what

●   Test::Class     you want to write, writing a test
●   Test::Builder   for what you are going to write,
                    then writing the code that does it
●   Test::Able
                  ● Start of by creating a file called

                    tdd_is_cool.pm and a file called
                    tdd_is_cool.t
Test::More
●   http://search.cpan.org/perldoc?Test::More
●   Yet another framework for writing test scripts
●   By convention, each test is assigned a number
    in order, often very useful to assign a name
●   Before anything else, you need a testing plan
●   use Test::More tests => 23;
●   ... run your tests ...
●   done_testing( $number_of_tests_run );
Test::More Example
●   A simple test module with two tests:
●


●


●


●   test::more$ perl tdd_is_cool.t
●   1..2
●   ok 1 - use tdd_is_cool;
●   ok 2 - TDD is cool!
PHP
●   PHPUnit      ●   As unit testing has gained
                     popularity, it has become a
●   SimpleTest
                     standard practice in PHP with
●   lime             libraries and frameworks such as
●   Atoum            Swiftmailer, the Zend Framework,
                     Yii and Symfony all requiring unit
●   ojes             test coverage of their source code
●   Testilence  Even good programmers make
                 ●

●   Apache-Test mistakes. The difference between
                a good and a bad programmer is
●   OnionTest
                that the good uses tests to detect
                his mistakes as soon as possible
PHPUnit
●   PHPUnit is the de-facto standard for unit testing
    in PHP projects. It provides both a framework
    that makes the writing of tests easy as well as
    the functionality to easily run the tests and
    analyse their results.
●   Part of xUnit family, created by Sebastian
    Bergmann, integrated & supported by Zend
    Studio/Framework.
●   Simple installation with PEAR
Installation
●   PHPUnit should be installed using the PEAR Installer. This installer is
    the backbone of PEAR, which provides a distribution system for PHP
    packages, and is shipped with every release of PHP since version
    4.3.0.
●   The PEAR channel (pear.phpunit.de) that is used to distribute
    PHPUnit needs to be registered with the local PEAR environment.
    Furthermore, components that PHPUnit depends upon are hosted on
    additional PEAR channels.
              pear channel-discover pear.phpunit.de
              pear channel-discover components.ez.no
              pear channel-discover pear.symfony-project.com
●   This has to be done only once. Now the PEAR Installer can be used to
    install packages from the PHPUnit channel:
              pear install phpunit/PHPUnit

●   After the installation you can find the PHPUnit source files inside
    your local PEAR directory; the path is usually /usr/lib/php/PHPUnit.
Unit Testing Zend Framework
●   Let's create a new Zend Framework application:
     zf create project zf-project
First Run
●   Launch an auto-generated unit tests from tests
    directory with the phpunit command:




●   phpunit.xml – testing configuration settings
●   bootstrap.php – load application during testing
IndexController Auto-Generated Test
A Word of Explanation
●   What are the parameters
    ●   URL generated from an Array of parameters
    ●   Are we dispatched to the correct place and result
●   What we were checking in the test
    ●   dispatch – point the URL where we go to
    ●   assertModule – are we in the correct module?
    ●   assertController – checks the controller we are in
    ●   assertAction – checks the action
    ●   assertQueryContentContains – checks the content
Coverage Report
●   Test coverage report(requires XDebug) with
    phpunit –coverage /report/directory/path
Zend Testing Further Reading
●   http://anton.shevchuk.name/php/unit-tests-
    zend-framework-application/
●   You can use DOM assertions:
    ● CSS selectors
    ● XPath


●   Use mock for Zend_Auth
●   Create emulators/wrappers
●   Write more tests!
Recommendation Summary
●   C++         ●   UnitTest++ advanced & convenient
●   Java        ●   JUnit the first and the best
●   .NET        ●   NUnit most popular & rich
●   Perl        ●   Test::More de-facto standard
●   PHP(Zend)   ●   PHPUnit (Zend_Test) must have
Even good programmers make mistakes.
The difference between a good and a bad
programmer is that the good uses tests to
detect his mistakes as soon as possible.
Links
●   http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks
●   http://gamesfromwithin.com/exploring-the-c-unit-testing-
    framework-jungle
●   http://www.testdriven.com/
●   http://www.phpunit.de/manual/3.6/en/index.html
●   https://github.com/sebastianbergmann/phpunit/
●   http://en.wikipedia.org/wiki/Unit_testing
●   http://www.slideshare.net/sebastian_bergmann/getting-started-
    with-phpunit
●   http://anton.shevchuk.name/php/unit-tests-zend-framework-
    application/
●   http://www.slideshare.net/DragonBe/introduction-to-unit-testing-
    with-phpunit-presentation-705447

More Related Content

PDF
Php unit (eng)
ODP
[EclipseCon NA 2014] Integration tests for RCP made easy with SWTBot and Tycho
PPT
N Unit Presentation
PDF
An Introduction to Unit Test Using NUnit
ODP
Python unit testing
PPTX
Integration Group - Robot Framework
PDF
When develpment met test(shift left testing)
PDF
TDD in Python With Pytest
Php unit (eng)
[EclipseCon NA 2014] Integration tests for RCP made easy with SWTBot and Tycho
N Unit Presentation
An Introduction to Unit Test Using NUnit
Python unit testing
Integration Group - Robot Framework
When develpment met test(shift left testing)
TDD in Python With Pytest

What's hot (20)

PDF
Automated Testing for Embedded Software in C or C++
ODP
Unit testing with Qt test
PPT
Presentation_C++UnitTest
PDF
Python Testing Fundamentals
PDF
Test all the things! Automated testing with Drupal 8
PDF
Unit testing on embedded target with C++Test
PDF
Continuous Integration In Php
PPT
Stopping the Rot - Putting Legacy C++ Under Test
PPTX
Introduction to JUnit testing in OpenDaylight
ODP
Presentation Unit Testing process
PDF
Unit test in drupal 8 by Pratomo Ardianto Drupalcamp Cebu 2018
PPTX
[Webinar] Qt Test-Driven Development Using Google Test and Google Mock
 
PPT
RPG Program for Unit Testing RPG
PPT
Unit Testing RPG with JUnit
PDF
PHPUnit with Magento
PPTX
Containerize your Blackbox tests
PPTX
Unit testing
PDF
Apache maven, a software project management tool
PDF
How and what to unit test
PPTX
Unit testing with NUnit
Automated Testing for Embedded Software in C or C++
Unit testing with Qt test
Presentation_C++UnitTest
Python Testing Fundamentals
Test all the things! Automated testing with Drupal 8
Unit testing on embedded target with C++Test
Continuous Integration In Php
Stopping the Rot - Putting Legacy C++ Under Test
Introduction to JUnit testing in OpenDaylight
Presentation Unit Testing process
Unit test in drupal 8 by Pratomo Ardianto Drupalcamp Cebu 2018
[Webinar] Qt Test-Driven Development Using Google Test and Google Mock
 
RPG Program for Unit Testing RPG
Unit Testing RPG with JUnit
PHPUnit with Magento
Containerize your Blackbox tests
Unit testing
Apache maven, a software project management tool
How and what to unit test
Unit testing with NUnit
Ad

Similar to Unit testing (eng) (20)

PDF
Writing Tests with the Unity Test Framework
ODP
Beginners - Get Started With Unit Testing in .NET
PDF
Introduzione a junit + integrazione con archibus
PDF
Back to basics - PHPUnit
PDF
Test Driven Development with PHP
PDF
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
PDF
stackconf 2024 | Test like a ninja with Go by Ivan Presenti.pdf
PDF
Automation for developers
PPTX
Creating a reasonable project boilerplate
PDF
Write unit test from scratch
PDF
UPC Plone Testing Talk
PDF
Introduction to Test Automation
PDF
Quality for developers
DOCX
Test driven development and unit testing with examples in C++
PPTX
Unit testing, UI testing and Test Driven Development in Visual Studio 2012
PDF
Test automation - Building effective solutions
PDF
TDD Workshop UTN 2012
PDF
PresentationqwertyuiopasdfghUnittest.pdf
PPT
Unit testing
ODP
Testing & continuous delivery
Writing Tests with the Unity Test Framework
Beginners - Get Started With Unit Testing in .NET
Introduzione a junit + integrazione con archibus
Back to basics - PHPUnit
Test Driven Development with PHP
Play with Testing on Android - Gilang Ramadhan (Academy Content Writer at Dic...
stackconf 2024 | Test like a ninja with Go by Ivan Presenti.pdf
Automation for developers
Creating a reasonable project boilerplate
Write unit test from scratch
UPC Plone Testing Talk
Introduction to Test Automation
Quality for developers
Test driven development and unit testing with examples in C++
Unit testing, UI testing and Test Driven Development in Visual Studio 2012
Test automation - Building effective solutions
TDD Workshop UTN 2012
PresentationqwertyuiopasdfghUnittest.pdf
Unit testing
Testing & continuous delivery
Ad

More from Anatoliy Okhotnikov (18)

PDF
Agile (IF PM Group) v2
PDF
Xdebug (ukr)
PDF
iPhone Objective-C Development (ukr) (2009)
PDF
Web application security (eng)
PDF
Php web app security (eng)
PDF
User story workflow (eng)
PDF
Ubuntu server wireless access point (eng)
PDF
Project Management: Burn-Down Chart / OrangeHRM Project MOD (eng)
PDF
Ldap introduction (eng)
PDF
Linux introduction (eng)
PDF
Jenkins CI (ukr)
PDF
PDF
ITEvent: Kanban Intro (ukr)
PDF
ITEvent: Continuous Integration (ukr)
PDF
Debug (ukr)
PDF
Db design (ukr)
PDF
Continuous integration (eng)
PDF
Agile Feedback Loops (ukr)
Agile (IF PM Group) v2
Xdebug (ukr)
iPhone Objective-C Development (ukr) (2009)
Web application security (eng)
Php web app security (eng)
User story workflow (eng)
Ubuntu server wireless access point (eng)
Project Management: Burn-Down Chart / OrangeHRM Project MOD (eng)
Ldap introduction (eng)
Linux introduction (eng)
Jenkins CI (ukr)
ITEvent: Kanban Intro (ukr)
ITEvent: Continuous Integration (ukr)
Debug (ukr)
Db design (ukr)
Continuous integration (eng)
Agile Feedback Loops (ukr)

Recently uploaded (20)

PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Approach and Philosophy of On baking technology
PDF
Encapsulation theory and applications.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
MYSQL Presentation for SQL database connectivity
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Modernizing your data center with Dell and AMD
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Diabetes mellitus diagnosis method based random forest with bat algorithm
Approach and Philosophy of On baking technology
Encapsulation theory and applications.pdf
NewMind AI Weekly Chronicles - August'25 Week I
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
MYSQL Presentation for SQL database connectivity
The Rise and Fall of 3GPP – Time for a Sabbatical?
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Spectral efficient network and resource selection model in 5G networks
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Modernizing your data center with Dell and AMD
Per capita expenditure prediction using model stacking based on satellite ima...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Review of recent advances in non-invasive hemoglobin estimation
Advanced methodologies resolving dimensionality complications for autism neur...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Building Integrated photovoltaic BIPV_UPV.pdf

Unit testing (eng)

  • 2. Softjourn Inc. Unit Testing Anatoliy Okhotnikov Softjourn Inc.
  • 3. Agenda ● What is Unit Testing? ● Benefits ● What is Test Driven Development? ● What is Behavior Driven Development? ● Categories of (Unit) Tests / Software Testing Pyramid, Frameworks ● C++, Java, .NET, Perl, PHP frameworks ● Unit-testing Zend Framework application
  • 4. What is Unit Testing? ● Ford new engine test area ● Special test harness that connects a gas and oil line ● For the output, a measuring device is connected to the drive shaft that comes directly out of the engine ● Engine starts and revs up ● Within about 5 minutes the computer is able to analyze the torque curve, gas usage, and oil usage
  • 5. What is Unit Testing? ● In computer programming, unit testing is a method by which individual units of source code are tested to determine if they are fit for use. A unit is the smallest testable part of an application. In procedural programming a unit may be an individual function or procedure. Unit tests are created by programmers or occasionally by white box testers. ● Ideally, each test case is independent from the others: substitutes like method stubs, mock objects, fakes and test harnesses can be used to assist testing a module in isolation. Unit tests are typically written and run by software developers to ensure that code meets its design and behaves as intended. Its implementation can vary from being very manual (pencil and paper) to being formalized as part of build automation
  • 6. Benefits The goal of unit testing is to isolate each part of the program and show that the individual parts are correct. A unit test provides a strict, written contract that the piece of code must satisfy. As a result, it affords several benefits. ● Find problems early (in the development cycle) ● Facilitates change (refactor, regression, etc.) ● Simplifies integration (parts, sum & integration) ● Documentation (live, understand API) ● Design (TDD, no formal design, design element)
  • 7. What is Test Driven Development? ● a software development process that relies on the repetition of a very short development cycle: first the developer writes a failing automated test case Test that defines a desired improvement or new function, then produces code to pass that test and finally refactors the Code new code to acceptable standards. ● Kent Beck, who is credited with Refactor having developed or 'rediscovered' the technique, stated in 2003 that TDD encourages simple designs and inspires confidence.
  • 8. What is Behavior Driven Development? ● An agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. ● A response to Test Driven Development, including Acceptance Test or Customer Test Driven Development practices as found in Extreme Programming. ● It extends TDD by writing test cases in a natural language that non-programmers can read. ● With a Feature Injection, BDD covers the analysis space and provides a full treatment of the software lifecycle from vision through to code and release.
  • 10. Categories of (Unit) Tests ● Small: Unit Tests ● Check conditional logic in the code ● A debugger should not be required in case of failure ● Medium: Functional Tests ● Check whether the interfaces between classes abide by their contracts ● Large: End-to-End Tests ● Check for “wiring bugs”
  • 12. Frameworks C++ 51 C 39 Wikipedia: JavaScript 29 373 testing Java 27 frameworks in .NET 23 PHP 11 70 programming Common Lisp 11 languages Objective-C 9 Perl 9 ActionScript / 9 Adobe Flex
  • 13. C++ ● CppUnit ● Differences in compilers, platforms, and programming ● Boost.Test styles. C++ is not exactly a ● CppUnitLite clean, fully supported ● NanoCppUnit language, with one coding standard. ● Unit++ ● List of features you want ● CxxTest ● Timing support: individual/total ● Unit Test++ ● Installation, Creation, Modification, etc.
  • 14. UnitTest++ ● http://unittest-cpp.sourceforge.net/UnitTest++.html ● Lightweight unit testing framework for C++ ● Designed to do test-driven development on a wide variety of platforms ● Simplicity, portability, speed, and small footprint ● ANSI portable C++: Win32, Linux, Mac OS X ● Written and maintained by Charles Nicholson and Noel Llopis “C++ For Game Programmers”
  • 15. UnitTest++ Example ● a minimal C++ program to run a failing test through UnitTest++ UnitTest++$ g++ -I./src -c test.cpp -o test.o UnitTest++$ g++ test.o libUnitTest++.a -o test UnitTest++$ ./test test.cpp:6: error: Failure in FailSpectacularly: false FAILURE: 1 out of 1 tests failed (1 failures). Test time: 0.00 seconds.
  • 16. Java ● JUnit ● Java has an abundance of libraries that can help with the ● TestNG development of your tests cases ● JTest ● Unit tests are fairly easy to write ● Cactus and have very rapid performance, ● Mockito so it's not going to take you long to run them. ● JWalk ● Don't Sacrifice Design for the ● SureAssert Sake of Testing ● Use Statistical Testing for Non- deterministic Code
  • 17. JUnit ● http://junit.sourceforge.net/ ● JUnit is a simple framework to code repeatable tests written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. Most famous of XUnits, JUnit is Open Source Software. ● Annotate a method with @org.junit.Test ● When you want to check a value, import static org.junit.Assert.*, call assertTrue() and pass a boolean that is true if the test succeeds
  • 18. JUnit Example ● a minimal Java class to run a successful test junit$ javac -cp junit-4.10.jar MyFirstTest.java junit$ java -cp junit-4.10.jar:. org.junit.runner.JUnitCore MyFirstTest JUnit version 4.10 Time: 0.004 OK (1 test)
  • 19. .NET ● csUnit ● There are a wide variety of unit testing tools available for .NET. ● MSTest Fortunately, the structure of unit ● NUnit tests is similar within most of the ● NUnitAsp frameworks. ● .TEST ● NUnit has historically been one of the most popular frameworks ● xUnit.net ● There are 2 main parts of a unit ● Visual testing system, the testing Studio framework and a test runner.
  • 20. NUnit ● http://www.nunit.org/ initially ported from JUnit ● written entirely in C# and has been completely redesigned to take advantage of many .NET language features, for example custom attributes and other reflection related capabilities. ● NUnit has two different ways to run your tests. The console runner, nunit-console.exe, is the fastest to launch, but is not interactive. The gui runner, nunit.exe, is a Windows Forms application that allows you to work selectively with your tests and provides graphical feedback
  • 21. NUnit Example ● [TestFixture] is the way to indicate that the class contains test code. ● [Test] is an indication that it is a test method. ● TransferFunds : expected <250> but was <150>
  • 22. Perl ● Test::More ● Put your tests in t/ and follow the convention of ##-name.t. ● TAP ● Create a "Smoke Test" script and ● Test::Harness a bunch of generic tests ● Test::Unit ● Its as simple as deciding what ● Test::Class you want to write, writing a test ● Test::Builder for what you are going to write, then writing the code that does it ● Test::Able ● Start of by creating a file called tdd_is_cool.pm and a file called tdd_is_cool.t
  • 23. Test::More ● http://search.cpan.org/perldoc?Test::More ● Yet another framework for writing test scripts ● By convention, each test is assigned a number in order, often very useful to assign a name ● Before anything else, you need a testing plan ● use Test::More tests => 23; ● ... run your tests ... ● done_testing( $number_of_tests_run );
  • 24. Test::More Example ● A simple test module with two tests: ● ● ● ● test::more$ perl tdd_is_cool.t ● 1..2 ● ok 1 - use tdd_is_cool; ● ok 2 - TDD is cool!
  • 25. PHP ● PHPUnit ● As unit testing has gained popularity, it has become a ● SimpleTest standard practice in PHP with ● lime libraries and frameworks such as ● Atoum Swiftmailer, the Zend Framework, Yii and Symfony all requiring unit ● ojes test coverage of their source code ● Testilence Even good programmers make ● ● Apache-Test mistakes. The difference between a good and a bad programmer is ● OnionTest that the good uses tests to detect his mistakes as soon as possible
  • 26. PHPUnit ● PHPUnit is the de-facto standard for unit testing in PHP projects. It provides both a framework that makes the writing of tests easy as well as the functionality to easily run the tests and analyse their results. ● Part of xUnit family, created by Sebastian Bergmann, integrated & supported by Zend Studio/Framework. ● Simple installation with PEAR
  • 27. Installation ● PHPUnit should be installed using the PEAR Installer. This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0. ● The PEAR channel (pear.phpunit.de) that is used to distribute PHPUnit needs to be registered with the local PEAR environment. Furthermore, components that PHPUnit depends upon are hosted on additional PEAR channels. pear channel-discover pear.phpunit.de pear channel-discover components.ez.no pear channel-discover pear.symfony-project.com ● This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel: pear install phpunit/PHPUnit ● After the installation you can find the PHPUnit source files inside your local PEAR directory; the path is usually /usr/lib/php/PHPUnit.
  • 28. Unit Testing Zend Framework ● Let's create a new Zend Framework application: zf create project zf-project
  • 29. First Run ● Launch an auto-generated unit tests from tests directory with the phpunit command: ● phpunit.xml – testing configuration settings ● bootstrap.php – load application during testing
  • 31. A Word of Explanation ● What are the parameters ● URL generated from an Array of parameters ● Are we dispatched to the correct place and result ● What we were checking in the test ● dispatch – point the URL where we go to ● assertModule – are we in the correct module? ● assertController – checks the controller we are in ● assertAction – checks the action ● assertQueryContentContains – checks the content
  • 32. Coverage Report ● Test coverage report(requires XDebug) with phpunit –coverage /report/directory/path
  • 33. Zend Testing Further Reading ● http://anton.shevchuk.name/php/unit-tests- zend-framework-application/ ● You can use DOM assertions: ● CSS selectors ● XPath ● Use mock for Zend_Auth ● Create emulators/wrappers ● Write more tests!
  • 34. Recommendation Summary ● C++ ● UnitTest++ advanced & convenient ● Java ● JUnit the first and the best ● .NET ● NUnit most popular & rich ● Perl ● Test::More de-facto standard ● PHP(Zend) ● PHPUnit (Zend_Test) must have Even good programmers make mistakes. The difference between a good and a bad programmer is that the good uses tests to detect his mistakes as soon as possible.
  • 35. Links ● http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks ● http://gamesfromwithin.com/exploring-the-c-unit-testing- framework-jungle ● http://www.testdriven.com/ ● http://www.phpunit.de/manual/3.6/en/index.html ● https://github.com/sebastianbergmann/phpunit/ ● http://en.wikipedia.org/wiki/Unit_testing ● http://www.slideshare.net/sebastian_bergmann/getting-started- with-phpunit ● http://anton.shevchuk.name/php/unit-tests-zend-framework- application/ ● http://www.slideshare.net/DragonBe/introduction-to-unit-testing- with-phpunit-presentation-705447