SlideShare a Scribd company logo
LOGO
“ Add your company slogan ”
Keep it Simple Stupid
Presentation by: Thu.Nguyen
CONTENT
KiSS Concept
Q&A
Demo
PHPUnit
Unit Testing
Software Testing
KiSS Concept
What is Software Testing?
 Testing is the process of executing a program with intent
of finding errors (The art of software testing – Glenford J.Myers)
4
Our program
The output
is correct?
I1, I2, I3,
…, In, … Expected results
= ?
Obtained results
“Inputs”
- No code inspection - No code analysis
- No model checking - No bug fixing
- No debugging
Level of testing
KiSS Concept
Unit Testing
Integration Testing
Functional Testing
System Testing
Load/Stress Testing
User Accepted Testing
Regression Testing
Programmer
Tester
Testing Techniques
Functional Testing
(Black box)
 Select test cases based
on the requirement or
design specification
 Emphasize on the
external behavior of
software
Structural Testing
(White box)
 Select test cases based
on the implement of
software
 Emphasize on the internal
structure of software
KiSS Concept
Black box vs White box
KiSS Concept
Process of testing
KiSS Concept
Test
cases
Design test
cases
Prepare test
data
Run program
with test data
Test
data
Test
results
Test
reports
Compare
results to test
cases
KiSS Concept
What is unit testing?
KiSS Concept
 “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.” (Wikipedia)
 A “unit ” is the smallest testable part of an application: a
function or class method.
Benefit of unit testing
 Easy to defect error
KiSS Concept
Benefit of unit testing
 Safer refactoring
KiSS Concept
Benefit of unit testing
 Automated test
KiSS Concept
Benefit of unit testing
 Long term of saving time and money
KiSS Concept
When do you write the test?
 Focus on requirements
 Thinking about how to
code will be consumed
 Stop coding when meet
requirement
 Harder initially
 Focus on code
 Thinking about algorithm
 More refactoring
 Easier initially
KiSS Concept
Before coding(TDD) After/During coding
How do I test?
 Isolate with the code being tested
 Short, simple, fast, readable
 No conditional logic or loop (if, switch, while)
 One test should be one behavior
KiSS Concept
KiSS Concept
Introduction
KiSS Concept
 Is a unit testing framework written in PHP, created by
Sebastian Bergmann.
 Part of the xUnit family of testing frameworks.
 Integrated/supported
• Zend Studio
• Zend Framework
• Symfony
• Doctrine
Installation
KiSS Concept
Install with PEAR:
pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit
Update:
pear upgrade phpunit/PHPUnit
Xdebug:
sudo apt-get install php5-xdebug php5-dev
Set include path in /etc/php5/cli/php.ini
include_path = “.:/usr/share/php”
Definitions
KiSS Concept
Test suite
Test suite
Test case
setUp()
testMethod
tearDown()
/*
*
*@annotation
*/
testMethod(){
assertion
}
Report
Test case
setUp()
testMethod
tearDown()
/*
*
*@annotation
*/
testMethod(){
assertion
}
Code coverage
Logging
Simple test
KiSS Concept
Running test
KiSS Concept
Go to command line and run:
phpunit /path/to/file/test.php or phpunit classname
/path/to/file/test.php
Running test
 Command line
 IDE
 Zend Studio
 NetBean
 Continuous Integration
 phpUnderControl
 Cruise Control
KiSS Concept
Result
 OK: all tests are successful
 FAILURES: test is fail or error
 Result of each test:
• . test succeeds
• F an assertion fails
• E an error
• S test has been skipped
• I test is marked as being incomplete or not yet
implement
KiSS Concept
Features
 @dataProvider
 @exception
 Fixture: setUp() and tearDown()
 Double: stub and mock object
 Database
 Code coverage
KiSS Concept
Data provider
 Is a method that returns an array of values to use in a test.
 Makes tests shorter and more concise.
 Data provider can use array or file csv.
KiSS Concept
Data provider
KiSS Concept
Input 1 myfunction() Report 1Result 1 Expected 1
compare
Input 2 myfunction() Report 2Result 2 Expected 2
compare
Input 3 myfunction() Report 3Result 3 Expected 3
compare
Data provider
KiSS Concept
/*
* @dataProvider
*/
testMethod($input, $expect)
{
myfunction()
}
Report 1
Data Providers
Input 1 expect1
Input 2 expect 2
Input 3 expect 3
Report 2
Report 3
Use array
KiSS Concept
Use csv file
KiSS Concept
Exception
 Test exception are thrown.
 Test expected messages of exception are thrown.
KiSS Concept
Example exception
KiSS Concept
Fixtures
 Is constructor method and destructor method in test case
 PHPUnit supports 2 methods:
• setUp(): the function run when test methods start to
run
• tearDown(): the function run after test methods end
KiSS Concept
Fixtures
KiSS Concept
Start
setUp()
testOne() testTwo() testThree()
tearDown()
End
KiSS Concept
Example fixtures
Test double
KiSS Concept
MyClass
myMethod($object)
{
…$object->otherMethod();
…
}
Database
Connection
File system
Web service
Function depends on other objects, other components
KiSS Concept
MyClass
myMethod()
{
…other Method
…
}
Database
File system
Web service
MyClassTest
testMyMethod()
{
…
…
}
Test double
How to isolate environment ?
Test double
KiSS Concept
MyClass
myMethod()
{
…other Method
…
}
Database Mock
File system Mock
Web service Mock
MyClassTest
testMyMethod()
{
…
…
}
Set mocks
Solution: use copy object Test double
return fixed value
Stub and Mock
 Set method return
values
 Test state
 Check method calls
 Check arguments used
 Test interactions
KiSS Concept
Stub Mock
Example stub object
KiSS Concept
Example mock object
KiSS Concept
Database testing
 Set up database connection.
 Set up initial dataset.
 Provide methods to get dataset from database.
 Provide methods to compare two datasets.
 Type of dataset
 Flat XML
 XML
 CSV
 MySQL dump
KiSS Concept
Organizing
 Allow to organize tests to test suite to run one time
 Use file system:
 All test files end with „Test‟.
 Organize directory structure.
 Use configuration file: phpunit.xml
KiSS Concept
Use file system
KiSS Concept
Use phpunit.xml
KiSS Concept
Code Coverage
KiSS Concept
 Help to see what are executed when the tests are run.
 Help to find code that is not yet tested.
 Help to measure testing completeness.
Code Coverage
KiSS Concept
Code Coverage
KiSS Concept
Red: code is not executedGreen: code is executed
Test cases cover this line code
Grey: dead code
Note: dead code is source code which is executed but whose result is never used.
Logging
Test results HTML
 <log type="testdox-html" target="./log/testdox.html" />
KiSS Concept
Logging
Test result XML
 <log type="junit" target="./log/logfile.xml" />
KiSS Concept
KiSS Concept
References
 PHPUnit manual
 Training course PHPUnit – Nick Belhome,2010
 Unit Testing with PHPUnit – Michelangelo van Dam
 Ini2it Unit Testing after ZF 1.8 - Michelangelo van Dam
 PHPUnit From Zero To Hero – Jeremy Cook
 PHPUnit & Continous Intergration – AlexMace
 Advanced PHPUnit Testing – Mike Lively
 Practical PHP Testing Patterns
 http://framework.zend.com/manual/1.12/ru/zend.test.phpunit.db.html
KiSS Concept
QUESTION & ANSWEAR
KiSS Concept
LOGO
“ Add your company slogan ”
Keep it Simple Stupid

More Related Content

What's hot (20)

PDF
TestNG introduction
Denis Bazhin
 
PDF
Robot Framework Introduction
Pekka Klärck
 
PPT
Industrialisation Du Logiciel - Introduction Et Bonnes Pratiques
Emmanuel Hugonnet
 
PDF
An Introduction to Test Driven Development
CodeOps Technologies LLP
 
PDF
An introduction to Google test framework
Abner Chih Yi Huang
 
DOC
Hybrid framework for test automation
srivinayak
 
PPTX
TestNG Session presented in PB
Abhishek Yadav
 
PPTX
Unit Testing
Sergey Podolsky
 
PPT
Hybrid Automation Framework Development introduction
Ganuka Yashantha
 
PPTX
Keyword-driven Test Automation Framework
Mikhail Subach
 
PPTX
Unit testing
princezzlove
 
PPTX
Unit testing & TDD concepts with best practice guidelines.
Mohamed Taman
 
PPTX
Unit tests & TDD
Dror Helper
 
PDF
API Testing following the Test Pyramid
Elias Nogueira
 
PPTX
Robot framework
boriau
 
PPTX
Understanding Unit Testing
ikhwanhayat
 
PPT
Stratégie de tests type
madspock
 
PPTX
UNIT TESTING PPT
suhasreddy1
 
TestNG introduction
Denis Bazhin
 
Robot Framework Introduction
Pekka Klärck
 
Industrialisation Du Logiciel - Introduction Et Bonnes Pratiques
Emmanuel Hugonnet
 
An Introduction to Test Driven Development
CodeOps Technologies LLP
 
An introduction to Google test framework
Abner Chih Yi Huang
 
Hybrid framework for test automation
srivinayak
 
TestNG Session presented in PB
Abhishek Yadav
 
Unit Testing
Sergey Podolsky
 
Hybrid Automation Framework Development introduction
Ganuka Yashantha
 
Keyword-driven Test Automation Framework
Mikhail Subach
 
Unit testing
princezzlove
 
Unit testing & TDD concepts with best practice guidelines.
Mohamed Taman
 
Unit tests & TDD
Dror Helper
 
API Testing following the Test Pyramid
Elias Nogueira
 
Robot framework
boriau
 
Understanding Unit Testing
ikhwanhayat
 
Stratégie de tests type
madspock
 
UNIT TESTING PPT
suhasreddy1
 

Similar to PHPUnit - Unit testing (20)

ZIP
Test
Eddie Kao
 
PPT
Test Driven Development with PHPUnit
Mindfire Solutions
 
PPT
Unit testing
davidahaskins
 
PDF
Cursus phpunit
Nick Belhomme
 
PDF
Systematic Unit Testing
scotchfield
 
KEY
Developer testing 101: Become a Testing Fanatic
LB Denker
 
KEY
Developer testing 201: When to Mock and When to Integrate
LB Denker
 
PPTX
Test in action week 2
Yi-Huan Chan
 
KEY
Php Unit With Zend Framework Zendcon09
Michelangelo van Dam
 
PDF
Unit testing in PHP
Chonlasith Jucksriporn
 
PPT
Unit Testing using PHPUnit
varuntaliyan
 
PDF
Intro to PHP Testing
Ran Mizrahi
 
PDF
Test Automation
Rodrigo Paiva
 
PDF
PHPunit and you
markstory
 
PDF
Test Driven Development
ZendCon
 
PPTX
PHPUnit with CakePHP and Yii
madhavi Ghadge
 
PDF
Unit testing in PHP
Lee Boynton
 
PDF
Fighting Fear-Driven-Development With PHPUnit
James Fuller
 
PDF
The PHP Way Of TDD - Think First, Code Later
Hiraq Citra M
 
Test
Eddie Kao
 
Test Driven Development with PHPUnit
Mindfire Solutions
 
Unit testing
davidahaskins
 
Cursus phpunit
Nick Belhomme
 
Systematic Unit Testing
scotchfield
 
Developer testing 101: Become a Testing Fanatic
LB Denker
 
Developer testing 201: When to Mock and When to Integrate
LB Denker
 
Test in action week 2
Yi-Huan Chan
 
Php Unit With Zend Framework Zendcon09
Michelangelo van Dam
 
Unit testing in PHP
Chonlasith Jucksriporn
 
Unit Testing using PHPUnit
varuntaliyan
 
Intro to PHP Testing
Ran Mizrahi
 
Test Automation
Rodrigo Paiva
 
PHPunit and you
markstory
 
Test Driven Development
ZendCon
 
PHPUnit with CakePHP and Yii
madhavi Ghadge
 
Unit testing in PHP
Lee Boynton
 
Fighting Fear-Driven-Development With PHPUnit
James Fuller
 
The PHP Way Of TDD - Think First, Code Later
Hiraq Citra M
 
Ad

Recently uploaded (20)

PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Digital Circuits, important subject in CS
contactparinay1
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Agentforce World Tour Toronto '25 - MCP with MuleSoft
Alexandra N. Martinez
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Ad

PHPUnit - Unit testing

Editor's Notes

  • #5: - Kiểm thử phần mềm là quá trình thực thi một hệ thống phần mềm để xác định xem phần mềm đó có đúng với đặc tả không và thực hiện trong môi trường như mong đợi hay không. - Mục đích của kiểm thử phần mềm:Tìmralỗichưađượcpháthiệnmộtcáchsớmnhất, hiệuquảnhấtĐảmbảolỗiđãđượcsửa- Kiểmthửphầnmềmkhôngkiểmtra code, khôngkiểmtra database, model, không debug, không fix bug
  • #6: Unit testing : làkiểu test kiểmtra code xemliệuchứcnăngnóđangthựchiệncóđúngcách hay khôngtheonhưyêucầu.Integration testing : làkiểu test kiểmtraliệutấtcảcác module làđượckếthợphoặcchưakếthợplạicùngvớinhauthựchiệncôngviệccóđạtđượckếtquảnhưtàiliệuyêucầuđãđượcxácđịnh (do mỗilậptrìnhviênthựchiệntrêncác module khácnhau. Khihọhoànthànhđoạn code củahọ, nhómquảnlýcấuhìnhrápchúnglạivớinhauvàchuẩnbịbiêndịch. Các tester cầnchắcrằngcác module nàybâygiờđãđượckếthợpvàlàmviệctheonhưyêucầu - tứclàphải test theonhưyêucầu).- Functional testing : làkiểu test liệumỗivàmọichứcnăngcủaứngdụngđóđanglàmviệccónhưyêucầucủatàiliệu. Nólàkiểu test chínhmà 80% côngviệc test đượcthựchiện. Trongkiểu test nàythìcáctestcaseđượcthựchiện (hoặcthihành).- System testing:Khi tester hoànthànhcôngviệc test (các tester test ứngdụngtrongcácmôitrường test, nghĩalàhọ test vớidữliệu test, không test trêndữliệuthật), ứngdụng (phầnmềm) phảiđược test trênmôitrườngthật. Nónghĩalàgì, tứclàkểtừkhicác tester test nótrongmôitrường test vớidữliệu test, chúng ta phảichắcchắnrằngứngdụnglàmviệctốttrongmôitrườngthậtvớidữliệuthật. Trongmôitrường test, mộtvàiđiềukhôngthể test hoặcthaotácgiả. Tấtcảsẽkhácnhauvàcơsởdữliệukhácnhau, mộtsốthaotáccóthểkhônglàmviệcnhưmongđợikhiứngdụngđượcchuyểntừmôitrường test sang môitrườngsảnphẩm (test enviroment to production environment).- Load testing ? Làkiểu test kiểmtrathờigianđáplạingườidùngvớiứngsốlượngngườidùngbấtkỳtrongmộtngữcảnhnàođócủacùngmộtứngdụngtạicùngmộtthờiđiểm.- Stress testing làgì? Làkiểu test kiểmtrathờigianđáplạingườidùngvớiứngsốlượngngườidùngbấtkỳtrongnhiềungữcảnhkhácnhaucủacùngmộtứngdụngtạicùngmộtthờiđiểm.- Performance testing làgì? Trongloại test này, ứngdụngđược test dựavàosứcnặngnhưsựphứctạpcủagiátrị, độdàicủađầuvào, độdàicủacáccâutruyvấn...Loại test nàykiểmtrabớtphầntải (stress/load) củaứngdụngcóthểđượcchắcchắnhơn.- User acceptance testing làgì? Trongkiểu test này, phầnmềmsẽđượcthựchiệnkiểmtratừngườidùngđểtìmranếuphầnmềmphùhợpvớisựmongđợicủangườidùngvàthựchiệnđúngnhưmongđợi. Tronggiaiđoạn test này, tester cóthểcũngthựchiệnhoặckháchhàngcócác tester củariênghọđểthựchiện.- Regression testing làgì? Khimộtchứcnăngmớiđượcthêmvàophầnmềm, chúng ta cầnchắcchắnrằngphầnchứcnăngmớiđượcthêmvàokhôngpháhỏngcácphầnkháccủaứngdụng. Hoặckhilỗiđãđượcchỉnhsửa, chúng ta cầnchắcchắnrằnglỗichỉnhsửakhôngpháhỏngcácphầnkháctrongứngdụng. Để test điềunàychúng ta thựchiệnkiểu test lặpđilặplạigọilà test hồiquy.
  • #7: Functional Testing: kiểmthửchứcnăng hay còngọikiểmthửhộpđen (blackbox)Black box làloại test mà tester đưagiátrịđầuvàovàkiểmtragiátrịđầurakhôngquantâmbêntronghoạtđộngnhưthếnào.Chủyếukiểmtragiaodiện, chứcnăngthiếu hay không, vv-Dựavàođặctảyêucầumàđưaracác test case: vìlàloại test chỉquan tam hệthốngphầnmềmcóhoạtđộngđúngnhưtrongyêucầu hay không, khôngquantâmbêntronglàmnhưthếnào-Chỉchútrọnghành vi bênngoàicủaphầnmềm.Structural Testing: kiểmthửcấutrúc hay còngọikiểmthửhộptrắng(white box)White box làloại test mà developer dựavàomã code củamìnhmàđưaracác test case.Test dựavàođiềukhiển logic (if else switch), điềukhiểnvònglặp (for while), cấutrúcdữliệubêntrongDựavàoviệcthựcthicủaphầnmềmmàđưaracác test caseChútrọngcấutrúcbêntrongcủaphầnmềm
  • #8: Giátrịđầuvào: 2 đồngxu, gõcâyđũa ma thuậtGiátrịđầura: con thỏBlack box: khángiả chi nhìnthấyảothuậtgiabỏ 2 đồngxu, vàgõcâyđũavàocáinón, và con thỏxuấthiệnWhite box: khinhậnđược 2 đồngxuvàthấycáinónbịgõ, ngườibêntrongđưa con thỏchoảothuậtgia
  • #9: Tiếntrìnhkiểmthử. Kiểmthửthườngbaogồmcácbước - Thiếtkếcáccakiểmthử - Bướctạodữliệuthử + Kiêmthửvớitấtcảcácdữliệuvàolàcầnthiết. + Chọntậpcácdữliệuthửđạidiệntừmiềndữliệuvào - Bướcthựcthichươngtrìnhtrêndữliệuthử + Cungcấpdữliệuthử + Thựcthi + Ghinhậnkếtquả - Bướcquansátkếtquảkiểmthử + Thựchiệntrongkhihoặcsaukhithựcthi + So sánhkếtquảnhậnđượcvàkếtquảmongđợi
  • #11: Unit testinglàphươngpháp test đơnvịcủa source code đểxácđịnh code đểcóhoạtđộngđúngnhưmongđợikhông.Một unit cóthểlàmột class hoặchàmcủachươngtrình
  • #16: Có 2 giaiđoạnchính:Trướckhi code hay còngọilàphươngpháp TDD(Test Driven Development: từviệc test dẫnđếnviết code để past test đó) - Tậptrungvàoyêucầucủachươngtrình - Nghĩđếnviệcviết code sẽđượcsửdụng - Ngưng code khiđạtđượcyêucầucủachươngtrình - KhókhănlúcbắtđầuSaukhi code xonghoặctronglúc code - Test chủyếuvàonhữngphầnđã code - Nghĩvềthuậttoánvà logic - Thayđổi code nhiềuhơn - Dễlúcbắtđầu
  • #17: - Code test phảiđộclập, cáchbiệtvới code được test - Code test phảingắngọn (khoảng 10 dòng), đơngiản, nhanhvàdễđọc. - Khôngsửdụngcáccấutrúcđiềukhiểnvàvònglặptronghàm test. Mỗicâulệnh if else nêntáchthànhnhiềuhàm test khácnhau, mỗihàmlà 1 trườnghợp test - Mộthàm test chỉnên test cho 1 trạngthái. VídụtestFormAcceptValidData
  • #19: PHPUnit là 1 framework viếtbằng PHP bởi Sebastian Bergmann.ThuộchọxUnit framework. xUnit frameworks: these unit testing frameworks are called the xUnit frameworks because their names usually start with the first letters of the language for which they were built.You might have CppUnit for C++, Junit for Java, Nunit for .NET.ĐượctíchhợpvàhỗtrợbởiZend Studio, Zend framework hay Symfony framework, doctrine
  • #24: Chạybằng command line: phpunitđườngdẫnđến file testChạybằng IDE: - Zend: trướchết import library vào project: Project -&gt; Properties -&gt; PHP Include Path -&gt; tab Libraries -&gt; click nút Add Library -&gt; chọn PHPUnit 3.x -&gt; OK. Đểchạynhấpchuộtphảilên file -&gt; Run As -&gt;PHPUnit, hiệnkhungkếtquảphpunit - NetBean: kiểmtraphpunitđãthêmvàochưa: Tool -&gt; Option -&gt; tab PHP -&gt; tab Unit Testing -&gt; kiểmtrađườngdẫncủaphpunit “/usr/bin/phpunit”Đểchạy file -&gt; Run -&gt; Test file -&gt; chỉthưmụcchứa file test -&gt; OKĐểchạy test suite: right click tên project -&gt; Properties -&gt; PHPUnit , chọn file bootstrap nếucó, chọn file configuration xml nếucó, chọn check box chạytấtcả file cótênlà Test -&gt; OKĐểhiện coverage report: right click tên project -&gt; Code Coverage -&gt; show reportChạybằng Continuous Integration (CI): tíchhợpliêntụcContinuous Intergration hay CI làmộtmôitrườnghỗtrợpháttriểnphầnmềmcóchứcnănggiúpcácthànhviêntrong team tíchhợp (integrate) côngviệccủahọmộtcáchthườngxuyên, liêntục. Mỗiđiểmtíchhợpsẽđượckiểmtra (verified) bởimột qui trình build và test tựđộngđểđảmbảopháthiệnsớmnhấtnhữnglỗiphátsinhtrongquátrìnhtíchhợpđó.Giảiphápnàythựcsựgiúpchocácnhàpháttriểnphầnmềmgiảmbớtcácvấnđềphátsinhtrongquátrìnhtíchhợpvàchophépcôngviệcpháttriểnphầntrởnênmềmnhanhchóngvàgắnkếthơn. CI baohàmmộtloạtnhữngquátrìnhđượcgắnkếtvớinhaunhư: automated build, coding standard check, static analysic, unit test, depoyingvàintergation test...
  • #26: Cácchứcnăngchínhcủaphpunit - Test dependency - Data provider - Exception - Fixture - Double - Code coverage
  • #28: Vớiviệc test thôngthường, để test 1 hàm, chúng ta truyềnvàothamsốsauđólấykếtquảtrảvề so sánhvớikếtquảchúng ta mongmuốn, sauđóxuất reportTest nhiềugiátrịđầuvào, viết code lậplạinhiềulần, mấtthờigianvìvậysửdụng data provider
  • #29: Data provider cungcấpdữliệuđể test. Dữliệunàycóthểlàgiátrịthamsốtruyềnvàohàmhoặcgiátrịmongmuốntrảvề, v.v
  • #40: Yêucầuđốivớiviệc test làcácthànhphầnphảiđược test riêngrẽvớinhauđểkếtquảcủathànhphầnkhôngbịảnhhưởngbởithànhphầnkhácvídụkhichúng ta gọiđến service đểlấykếtquảvàsauđólấykếtquảđểtínhtoántiếpchocôngviệccủachúng ta thìbắtbuộckếtquảtrảvềluônluônphảiđúngđểbiếtchắcnếu test củachúng ta bị fail là do code củachúng ta chứkhôngphải do service làmsai. Đểlàmđiềuđóđôikhichúng ta phảigiảlậpnhữngthànhphầnđóđểđảmbảo test đượccôlậpvàchínhxác. Việcgiảlập 1 đốitượngđượcgọilà test doubles.Ý tưởngcủa test double chỉgiảlập 1 phầncủa object, thườnglà 1 method nàođócần test chứkhônggiảlậptoànbộ object.Test double khôngphảithiếtkếmộtchotấtcảnêntùyvàotrườnghợpmàsửdụngcácloại double khácnhau. Test double cómấyloạisau:Dummy: là 1 object màđơngiảnđượcthông qua đểthỏamãncácphươngthứccầnkiểmtra. Nólà test double đơngiảnnhấtmàbạncóthểxâydựngStub cungcấpnhữngkếtquảđóngkhiđượcgọiSpy ghilạinhữnglầngọivàthamsốđểbạncóthểkiểmtrachúngsaunàybêntronghàm testMock giốngnhư Spy nhưngkiểmtralầngọingaylậptứcdựatheonhữnggìmàbạnđãđịnhnghĩatrướcđó. Nócũngcóthểcungcấpkếtquảđóng.Fake làsựthựcthimộtcáchđơngiảnnhấtcóthểcủamột object thậtchẳnghạnnhư DAO.Trongđóchúng ta chỉchú ý đặcbiệtđến Stub và Mock vìlà 2 đốitượngthườngdùng.Stub object làbảnsaocủamột object khácđượcchúng ta địnhnghĩatrướcvàtrảvề 1 kếtquảđóngcủamộtphươngthứctrong object đócũngđượcđịnhnghĩatrướcMock : điểmkhácnhaucănbảngiữa Stub và Mock là Mock khôngchỉgiảlập object màcònchokiểmtranhữnggìbạntruyềnchonóvàcáchbạngọinó.