SlideShare a Scribd company logo
Test Case Point Analysis
Agenda

•   Objectives
•   Background and Motivation
•   Existing Estimation Methods
•   Test Case Point Analysis
•   Effort Estimation Methods using TCP
•   Conclusion and Future Work




                                          2
Objectives

• Discuss importance of software estimation,
  especially for testing projects
• Discuss existing methods for estimating testing
  activities
• Introduce an approach to estimating testing
  projects
   – Test Case Point Analysis
   – Effort Estimation using TCP




                                                    3
Agenda

•   Objectives
•   Background and Motivation
•   Existing Estimation Methods
•   Test Case Point Analysis
•   Effort Estimation Methods using TCP
•   Conclusion and Future Work




                                          4
Software Estimation and Its Importance

• Software estimation
   – process of determining the cost, time, staff, and other related
     attributes of software projects, often before work is performed
• Estimation is important for the success or failure of software
  projects
• Provides inputs for
   –   Making investment decisions
   –   Budget and staff allocation
   –   Tradeoff and risk analysis
   –   Project planning
   –   Stakeholder negotiation
   –   etc.



                                                                       5
Popular Software Estimation Methods

• Sizing Methods
   – Source Lines of Code (SLOC)
   – Function Points Analysis
   – Use Case Points
• Effort Estimation Methods
   – Expert judgment/experience
   – Productivity index
   – COCOMO, SEER-SIM, SLIM models
• Software testing estimation methods
   – Using a test distribution percentage
   – Test Case Points Analysis (by Cognizant Technology Solutions) [2]
       • Mainly based on the number of steps




                                                                         6
Motivation

• Testing accounts for up to 50% of project effort [1]
• Current problems
   – estimates are done for the whole project rather than
     testing specific
   – lack of reliable methods designed for estimating size and
     effort of software testing
   – vague definitions of testing productivity
      • due to the lack of a size measure for software testing
• There are needs of
   – accurately estimating effort of testing activities
   – measuring size and productivity of testing activities
   – measuring effectiveness and efficiency of software
     testing
                                                                 7
Motivation (cont’d)

• Our aim to
  – Defining a method for estimating the size of testing
    activities
  – Defining methods to estimate testing effort, schedule,
    and staff accurately using this size measure
  – Using this size measure as a basis for measuring
     • productivity
     • effectiveness
     • other testing metrics




                                                             8
Agenda

•   Objectives
•   Background and Motivation
•   Existing Estimation Methods
•   Test Case Point Analysis
•   Effort Estimation Methods using TCP
•   Conclusion and Future Work




                                          9
Test Case Point Analysis

• Principles
   –   Size must reflect the mass and complexity of the testing project
   –   Size should correlate with testing effort
   –   Test case point is measured using test cases as main input
   –   Test case complexity is based on
        •   Checkpoints
        •   Precondition
        •   Test Data
        •   Type of test case




                                                                          10
Test Case Point Analysis (cont’d)

• Process overview

                                          Project
                                         Attributes




                             Test Case   Estimate     Estimated
Test Case     Test Case
                              Points      Testing       Effort
            Point Analysis
                                           Effort




                                                            11
Test Case Point Analysis (cont’d)

• TCPA estimates the size of testing projects using test
  cases as input
• Steps
   1. Measure test case complexity
      •   Count checkpoints
      •   Measure the complexity of precondition
      •   Measure the complexity of data
   2. Adjust Test Case Point by type of test
      •   Consider 11 types of test case
           o   Each type has a weight
           o   Adjust TCP using the weight
      •   Use functional test cases as baseline with the weight of 1.0



                                                                         12
Checkpoint

• Checkpoint
  – Is the condition in which the tester verifies whether the
    result produced by the target function matches the
    expected criterion
  – One test case consists of one or many checkpoints
• Counting rule 1

     One checkpoint is counted as one Test Case Point




                                                                13
Test Case Precondition

• Precondition
   – specifies the condition to execute the test case
   – mainly affects the cost to execute the test case
   – may be related to data prepared for the test case
• Four levels of complexity
   –   None
   –   Low
   –   Medium
   –   High




                                                         14
Test Case Precondition (cont’d)

• None
   – The precondition is not applicable or important to execute the test case
   – Or, the precondition is just reused from the previous test case to continue
     the current test case
• Low
   – The condition for executing the test case is available with some simple
     modifications required
   – Or, some simple set-up steps are needed
• Medium
   – Some explicit preparation is needed to execute the test case
   – The condition for executing is available with some additional modifications
     required
   – Or, some additional set-up steps are needed
• High
   – Heavy hardware and/or software configurations are needed to execute the
     test case

                                                                                   15
Test Case Precondition (cont’d)

• Counting rule 2A: Counting Unadjusted Test Case Points for
  Precondition:
    Each complexity level of precondition is assigned a
    number of Test Case Points




            Based on our survey of 18 senior QA engineers


                                                               16
Test Data

• Test Data
   – used to execute the test case
   – can be generated at the test case execution time, sourced from
     previous tests, or generated by test scripts
   – Test data is test case specific, or general to a group of test cases, or
     for the whole system
• Four levels of complexity
   –   None
   –   Low
   –   Medium
   –   High




                                                                                17
Test Data (cont’d)

• None
   – No test data preparation is needed
• Low
   – Simple test data is needed and can be created during the test case execution time
   – Or, the test case uses a slightly modified version of existing test data and requires little
     or no effort to modify the test data
• Medium
   – Test data is deliberately prepared in advance with extra effort to ensure its
     completeness, comprehensiveness, and consistency
• High
   – Test data is prepared in advance with considerable effort to ensure its completeness,
     comprehensiveness, and consistency
   – This could include using support tools to generate data and a database to store and
     manage test data
   – Scripts may be required to generate test data




                                                                                               18
Test Data (cont’d)

• Counting rule 2B: Counting Unadjusted Test Case Points for
  Test Data:
    Each complexity level of Test Data is assigned a
    number of Test Case Points




            Based on our survey of 18 senior QA engineers


                                                               19
Adjust Test Case Point

• Test Case Point counted till this point is considered
  Unadjusted Test Case Point (UTCP)
• UTCP is adjusted by considering types of test case
   – Each type of test case is assigned a weight
   – Adjusted Test Case Point (ATCP):
               n

       ATCP = ∑UTCPi * Wi
               i=1

       • UTCPi - the number of UTCP counted for the test case ith.
       • Wi - the weight of the test case ith, taking into account its test type




                                                                                   20
Weight by Type of Test




        Based on our survey of 18 senior QA engineers
                                                        21
Weight by Type of Test (cont’d)




                                  22
Test Case Point Analysis - Summary

• Process overview

              Count
            Checkpoints


             Determine
Test Case                  UTCP   Adjust with   TCP
            Precondition
                                   Test Type
             Complexity


            Determine
             Test Data
            Complexity




                                                  23
Agenda

•   Objectives
•   Background and Motivation
•   Existing Estimation Methods
•   Test Case Point Analysis
•   Effort Estimation Methods using TCP
•   Conclusion and Future Work




                                          24
Estimate Testing Effort

• Estimate testing effort using TCP
• Test effort distribution, four phases
   –   Test Planning
   –   Test Analysis and Design      Each of these phases may be
                                     performed multiple times
   –   Test Execution
   –   Test Tracking and Reporting
• Effort estimation methods
   – Productivity index
   – Regression




                                                                   25
Estimate Testing Effort (cont’d)

• When estimating TCP, assume that each phase is
  performed ONCE
• Effort is estimated dependent on how many times a
  phase is performed




                                                  26
Productivity Index

• Effort is computed using productivity index of
  completed project
• Productivity index is measured as person-month per
  TCP

  Effort = TCP * Productivity Index

          Simple method




                                                   27
Regression

• Estimate effort of new projects using size and effort
  of completed projects
                   100


                       90
                                                                                                Regression
                       80
                                                                                                formula
                       70
                                                      y = 0.072x + 1.640
         Effort (PM)




                       60


                       50


                       40


                       30


                       20


                       10


                       0
                            0   100   200   300      400   500   600   700   800   900   1000
                                                  Adjusted TCP


                                                                                                        28
Tools Support by QASymphony [3]

       • qTest – Quality Management Suite
          –   Manage requirements and test cases
          –   Plan testing activities and resources
          –   Monitor and control testing activities
          –   Perform measurement, analysis, and reporting
               • Test case point analysis
               • Effort estimation
       • qTrace – defect and scenario recording tool
          – Record defect
          – Record user scenarios



                                                         29
Conclusion and Future Work

• It is important to estimate size and effort of testing
  projects
• Test Case Point Analysis (TCPA) was proposed to
  estimate size. Elements include
   –   Checkpoints
   –   Precondition
   –   Test Data
   –   Test Type
• Simple two methods for estimating effort were
  introduced
   – Productivity index
   – Regression

                                                           30
Conclusion and Future Work

• Advantages of TCPA
  – Easy to implement
  – Reflecting real complexity of test cases
  – Independent with the number of steps
• Limitations and future work
  –   Need empirical validations
  –   Recalibrate constants used in the method
  –   Support only manual testing
  –   Lack of support for performance testing




                                                 31
Thank You
References

•   [1] Y. Yang, Q. Li, M. Li, Q. Wang, An empirical analysis on distribution patterns of software
    maintenance effort, International Conference on Software Maintenance, 2008, pp. 456-459
•   [2] N. Patel, M. Govindrajan, S. Maharana, S. Ramdas, “Test Case Point Analysis”, Cognizant
    Technology Solutions, White Paper, 2001
•   [3] QASymphony: www.qasymphony.com

More Related Content

PPTX
Diabetes Mellitus
PPTX
Hypertension
PPTX
Republic Act No. 11313 Safe Spaces Act (Bawal Bastos Law).pptx
PPTX
Power Point Presentation on Artificial Intelligence
PDF
Caça palavras - Bullying
PPTX
PDF
Atividade ortográfica - Caçada aos erros
Diabetes Mellitus
Hypertension
Republic Act No. 11313 Safe Spaces Act (Bawal Bastos Law).pptx
Power Point Presentation on Artificial Intelligence
Caça palavras - Bullying
Atividade ortográfica - Caçada aos erros

What's hot (20)

PPTX
Test Estimation using Test Case Point Analysis method
PDF
What is Performance Testing?
PDF
What is Web Testing?
PPTX
Testing and types of Testing
PDF
Software Testing Metrics
PDF
APQP: Advanced Product/Project Quality Planning
PPTX
Robot Framework
PPTX
Regression testing
PDF
(애자일) 테스트 계획서 샘플
PPTX
Aula 3 técnicas de teste de software1
PPTX
Load and performance testing
PDF
소프트웨어 테스팅
PPT
Performance and load testing
PPTX
Software Quality Assurance
PPTX
Regression and performance testing
PPT
powerpoint template for testing training
PPSX
Principles of Software testing
PDF
개발이 테스트를 만났을 때(Shift left testing)
PDF
Test and Behaviour Driven Development (TDD/BDD)
PPT
Agile testing
Test Estimation using Test Case Point Analysis method
What is Performance Testing?
What is Web Testing?
Testing and types of Testing
Software Testing Metrics
APQP: Advanced Product/Project Quality Planning
Robot Framework
Regression testing
(애자일) 테스트 계획서 샘플
Aula 3 técnicas de teste de software1
Load and performance testing
소프트웨어 테스팅
Performance and load testing
Software Quality Assurance
Regression and performance testing
powerpoint template for testing training
Principles of Software testing
개발이 테스트를 만났을 때(Shift left testing)
Test and Behaviour Driven Development (TDD/BDD)
Agile testing
Ad

Viewers also liked (20)

PPTX
Test effort estimation
PPT
Test Estimation Techniques
PDF
How to accurately estimate the size and effort of your software testing (1)
PDF
Test case-point-analysis (whitepaper)
PPSX
Test Complete
PPTX
Test studio
PPTX
Team Foundation Server 2010
PPTX
Software testing methods
PPTX
Software testing
PDF
Best software testing course
PPT
Software Estimation Technique
PPT
Software estimation
PDF
Introduction to Unit Testing with PHPUnit
PPTX
Estimation techniques and software metrics
PPT
Test Life Cycle - Manual Testing Concept.
PDF
01 software test engineering (manual testing)
PPT
Automated Testing vs Manual Testing
PPT
Software Estimation Techniques
PPTX
Software estimation techniques
PPT
Software cost estimation
Test effort estimation
Test Estimation Techniques
How to accurately estimate the size and effort of your software testing (1)
Test case-point-analysis (whitepaper)
Test Complete
Test studio
Team Foundation Server 2010
Software testing methods
Software testing
Best software testing course
Software Estimation Technique
Software estimation
Introduction to Unit Testing with PHPUnit
Estimation techniques and software metrics
Test Life Cycle - Manual Testing Concept.
01 software test engineering (manual testing)
Automated Testing vs Manual Testing
Software Estimation Techniques
Software estimation techniques
Software cost estimation
Ad

Similar to Test Case Point Analysis (20)

PPTX
Bug deBug Chennai 2012 Talk - V3 analysis an approach for estimating software...
PDF
An Approach to estimate Software Testing
PDF
[Vu Van Nguyen] Test Estimation in Practice
PDF
Class9_SW_Testing_Strategies.pdf
PDF
ISTQB CTAL - Test Analyst
PDF
Mt s11 test_design
PPT
Unit 6
PPT
Ch1 preliminaries
PPTX
Risk based testing and random testing
PPTX
Multiple Dimensions of Load Testing
PDF
Loadtesting wuc2009v2
PPT
UNIT IV.ppt
PPT
Software engineering Testing technique,test case,test suit design
PPT
Test Design Techniques - skill oriented course.ppt
PPT
SoftwareTesting-Lets learn about document handling
PPTX
Test Management.pptx
PPTX
Chapter 1 Fundamental of testing ISTQB v4
PPT
Mining Performance Regression Testing Repositories for Automated Performance ...
PPT
Software Project Management lecture 10
PDF
QA Meetup at Signavio (Berlin, 06.06.19)
Bug deBug Chennai 2012 Talk - V3 analysis an approach for estimating software...
An Approach to estimate Software Testing
[Vu Van Nguyen] Test Estimation in Practice
Class9_SW_Testing_Strategies.pdf
ISTQB CTAL - Test Analyst
Mt s11 test_design
Unit 6
Ch1 preliminaries
Risk based testing and random testing
Multiple Dimensions of Load Testing
Loadtesting wuc2009v2
UNIT IV.ppt
Software engineering Testing technique,test case,test suit design
Test Design Techniques - skill oriented course.ppt
SoftwareTesting-Lets learn about document handling
Test Management.pptx
Chapter 1 Fundamental of testing ISTQB v4
Mining Performance Regression Testing Repositories for Automated Performance ...
Software Project Management lecture 10
QA Meetup at Signavio (Berlin, 06.06.19)

Recently uploaded (20)

PDF
Volvo EC20C Excavator Service maintenance schedules.pdf
PPTX
laws of thermodynamics with diagrams details
PDF
Volvo EC290C NL EC290CNL engine Manual.pdf
PPTX
IMMUNITY TYPES PPT.pptx very good , sufficient
PDF
Volvo EC290C NL EC290CNL Hydraulic Excavator Specs Manual.pdf
PPTX
Fire Fighting Unit IV industrial safety.pptx
PPTX
UNIT-2(B) Organisavtional Appraisal.pptx
PPT
Your score increases as you pick a category, fill out a long description and ...
PPT
ACCOMPLISHMENT REPOERTS AND FILE OF GRADE 12 2021.ppt
PPTX
Robot_ppt_YRG[1] [Read-Only]bestppt.pptx
PPTX
Lecture 3b C Library xnxjxjxjxkx_ ESP32.pptx
PDF
RPL-ASDC PPT PROGRAM NSDC GOVT SKILLS INDIA
PPTX
TOEFL ITP Grammar_ Clausessssssssssssssssss.pptx
PDF
EC290C NL EC290CNL Volvo excavator specs.pdf
PDF
Volvo EC20C Excavator Step-by-step Maintenance Instructions pdf
PPTX
Zeem: Transition Your Fleet, Seamlessly by Margaret Boelter
PPTX
laws of thermodynamics with complete explanation
PDF
Journal Meraj.pdfuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
PDF
Presentation.pdf ...............gjtn....tdubsr..........
PDF
How much horsepower does a Volvo EC210Cl have.pdf
Volvo EC20C Excavator Service maintenance schedules.pdf
laws of thermodynamics with diagrams details
Volvo EC290C NL EC290CNL engine Manual.pdf
IMMUNITY TYPES PPT.pptx very good , sufficient
Volvo EC290C NL EC290CNL Hydraulic Excavator Specs Manual.pdf
Fire Fighting Unit IV industrial safety.pptx
UNIT-2(B) Organisavtional Appraisal.pptx
Your score increases as you pick a category, fill out a long description and ...
ACCOMPLISHMENT REPOERTS AND FILE OF GRADE 12 2021.ppt
Robot_ppt_YRG[1] [Read-Only]bestppt.pptx
Lecture 3b C Library xnxjxjxjxkx_ ESP32.pptx
RPL-ASDC PPT PROGRAM NSDC GOVT SKILLS INDIA
TOEFL ITP Grammar_ Clausessssssssssssssssss.pptx
EC290C NL EC290CNL Volvo excavator specs.pdf
Volvo EC20C Excavator Step-by-step Maintenance Instructions pdf
Zeem: Transition Your Fleet, Seamlessly by Margaret Boelter
laws of thermodynamics with complete explanation
Journal Meraj.pdfuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
Presentation.pdf ...............gjtn....tdubsr..........
How much horsepower does a Volvo EC210Cl have.pdf

Test Case Point Analysis

  • 2. Agenda • Objectives • Background and Motivation • Existing Estimation Methods • Test Case Point Analysis • Effort Estimation Methods using TCP • Conclusion and Future Work 2
  • 3. Objectives • Discuss importance of software estimation, especially for testing projects • Discuss existing methods for estimating testing activities • Introduce an approach to estimating testing projects – Test Case Point Analysis – Effort Estimation using TCP 3
  • 4. Agenda • Objectives • Background and Motivation • Existing Estimation Methods • Test Case Point Analysis • Effort Estimation Methods using TCP • Conclusion and Future Work 4
  • 5. Software Estimation and Its Importance • Software estimation – process of determining the cost, time, staff, and other related attributes of software projects, often before work is performed • Estimation is important for the success or failure of software projects • Provides inputs for – Making investment decisions – Budget and staff allocation – Tradeoff and risk analysis – Project planning – Stakeholder negotiation – etc. 5
  • 6. Popular Software Estimation Methods • Sizing Methods – Source Lines of Code (SLOC) – Function Points Analysis – Use Case Points • Effort Estimation Methods – Expert judgment/experience – Productivity index – COCOMO, SEER-SIM, SLIM models • Software testing estimation methods – Using a test distribution percentage – Test Case Points Analysis (by Cognizant Technology Solutions) [2] • Mainly based on the number of steps 6
  • 7. Motivation • Testing accounts for up to 50% of project effort [1] • Current problems – estimates are done for the whole project rather than testing specific – lack of reliable methods designed for estimating size and effort of software testing – vague definitions of testing productivity • due to the lack of a size measure for software testing • There are needs of – accurately estimating effort of testing activities – measuring size and productivity of testing activities – measuring effectiveness and efficiency of software testing 7
  • 8. Motivation (cont’d) • Our aim to – Defining a method for estimating the size of testing activities – Defining methods to estimate testing effort, schedule, and staff accurately using this size measure – Using this size measure as a basis for measuring • productivity • effectiveness • other testing metrics 8
  • 9. Agenda • Objectives • Background and Motivation • Existing Estimation Methods • Test Case Point Analysis • Effort Estimation Methods using TCP • Conclusion and Future Work 9
  • 10. Test Case Point Analysis • Principles – Size must reflect the mass and complexity of the testing project – Size should correlate with testing effort – Test case point is measured using test cases as main input – Test case complexity is based on • Checkpoints • Precondition • Test Data • Type of test case 10
  • 11. Test Case Point Analysis (cont’d) • Process overview Project Attributes Test Case Estimate Estimated Test Case Test Case Points Testing Effort Point Analysis Effort 11
  • 12. Test Case Point Analysis (cont’d) • TCPA estimates the size of testing projects using test cases as input • Steps 1. Measure test case complexity • Count checkpoints • Measure the complexity of precondition • Measure the complexity of data 2. Adjust Test Case Point by type of test • Consider 11 types of test case o Each type has a weight o Adjust TCP using the weight • Use functional test cases as baseline with the weight of 1.0 12
  • 13. Checkpoint • Checkpoint – Is the condition in which the tester verifies whether the result produced by the target function matches the expected criterion – One test case consists of one or many checkpoints • Counting rule 1 One checkpoint is counted as one Test Case Point 13
  • 14. Test Case Precondition • Precondition – specifies the condition to execute the test case – mainly affects the cost to execute the test case – may be related to data prepared for the test case • Four levels of complexity – None – Low – Medium – High 14
  • 15. Test Case Precondition (cont’d) • None – The precondition is not applicable or important to execute the test case – Or, the precondition is just reused from the previous test case to continue the current test case • Low – The condition for executing the test case is available with some simple modifications required – Or, some simple set-up steps are needed • Medium – Some explicit preparation is needed to execute the test case – The condition for executing is available with some additional modifications required – Or, some additional set-up steps are needed • High – Heavy hardware and/or software configurations are needed to execute the test case 15
  • 16. Test Case Precondition (cont’d) • Counting rule 2A: Counting Unadjusted Test Case Points for Precondition: Each complexity level of precondition is assigned a number of Test Case Points Based on our survey of 18 senior QA engineers 16
  • 17. Test Data • Test Data – used to execute the test case – can be generated at the test case execution time, sourced from previous tests, or generated by test scripts – Test data is test case specific, or general to a group of test cases, or for the whole system • Four levels of complexity – None – Low – Medium – High 17
  • 18. Test Data (cont’d) • None – No test data preparation is needed • Low – Simple test data is needed and can be created during the test case execution time – Or, the test case uses a slightly modified version of existing test data and requires little or no effort to modify the test data • Medium – Test data is deliberately prepared in advance with extra effort to ensure its completeness, comprehensiveness, and consistency • High – Test data is prepared in advance with considerable effort to ensure its completeness, comprehensiveness, and consistency – This could include using support tools to generate data and a database to store and manage test data – Scripts may be required to generate test data 18
  • 19. Test Data (cont’d) • Counting rule 2B: Counting Unadjusted Test Case Points for Test Data: Each complexity level of Test Data is assigned a number of Test Case Points Based on our survey of 18 senior QA engineers 19
  • 20. Adjust Test Case Point • Test Case Point counted till this point is considered Unadjusted Test Case Point (UTCP) • UTCP is adjusted by considering types of test case – Each type of test case is assigned a weight – Adjusted Test Case Point (ATCP): n ATCP = ∑UTCPi * Wi i=1 • UTCPi - the number of UTCP counted for the test case ith. • Wi - the weight of the test case ith, taking into account its test type 20
  • 21. Weight by Type of Test Based on our survey of 18 senior QA engineers 21
  • 22. Weight by Type of Test (cont’d) 22
  • 23. Test Case Point Analysis - Summary • Process overview Count Checkpoints Determine Test Case UTCP Adjust with TCP Precondition Test Type Complexity Determine Test Data Complexity 23
  • 24. Agenda • Objectives • Background and Motivation • Existing Estimation Methods • Test Case Point Analysis • Effort Estimation Methods using TCP • Conclusion and Future Work 24
  • 25. Estimate Testing Effort • Estimate testing effort using TCP • Test effort distribution, four phases – Test Planning – Test Analysis and Design Each of these phases may be performed multiple times – Test Execution – Test Tracking and Reporting • Effort estimation methods – Productivity index – Regression 25
  • 26. Estimate Testing Effort (cont’d) • When estimating TCP, assume that each phase is performed ONCE • Effort is estimated dependent on how many times a phase is performed 26
  • 27. Productivity Index • Effort is computed using productivity index of completed project • Productivity index is measured as person-month per TCP Effort = TCP * Productivity Index Simple method 27
  • 28. Regression • Estimate effort of new projects using size and effort of completed projects 100 90 Regression 80 formula 70 y = 0.072x + 1.640 Effort (PM) 60 50 40 30 20 10 0 0 100 200 300 400 500 600 700 800 900 1000 Adjusted TCP 28
  • 29. Tools Support by QASymphony [3] • qTest – Quality Management Suite – Manage requirements and test cases – Plan testing activities and resources – Monitor and control testing activities – Perform measurement, analysis, and reporting • Test case point analysis • Effort estimation • qTrace – defect and scenario recording tool – Record defect – Record user scenarios 29
  • 30. Conclusion and Future Work • It is important to estimate size and effort of testing projects • Test Case Point Analysis (TCPA) was proposed to estimate size. Elements include – Checkpoints – Precondition – Test Data – Test Type • Simple two methods for estimating effort were introduced – Productivity index – Regression 30
  • 31. Conclusion and Future Work • Advantages of TCPA – Easy to implement – Reflecting real complexity of test cases – Independent with the number of steps • Limitations and future work – Need empirical validations – Recalibrate constants used in the method – Support only manual testing – Lack of support for performance testing 31
  • 33. References • [1] Y. Yang, Q. Li, M. Li, Q. Wang, An empirical analysis on distribution patterns of software maintenance effort, International Conference on Software Maintenance, 2008, pp. 456-459 • [2] N. Patel, M. Govindrajan, S. Maharana, S. Ramdas, “Test Case Point Analysis”, Cognizant Technology Solutions, White Paper, 2001 • [3] QASymphony: www.qasymphony.com