SlideShare uma empresa Scribd logo
1 de 36
Baixar para ler offline
Obstacle Driven Development
ODD Testing
Testing in History 1
Testing ideas is implicit to science
and technology.
• Testing implemented on products
for many years
• Ideas are assumptions without
sufficient testing
• Todays technology is a result of
centuries of tests
21/06/2016 ©odd.enterprises 2
Testing in History 2
Testing implemented on certain
products for many years.
• Tests must replicate real world
conditions
• Armour designed to be bullet
proof is tested
• Non standard components
required this approach
21/06/2016 ©odd.enterprises 3
Cost of Failure
Cost of failure is often greater than
associated costs related to a
successful development.
• Undetected errors may become
very costly
• Increased use of specification can
reduce costs overall
• Cost increases exponentially for
each stage a bug is undetected
21/06/2016 ©odd.enterprises 4
Fail Early, Fail Often
Achieving success with ODD is
through identifying, correcting and
preventing failure.
• Undiscovered errors cost 10x
more to fix by next stage
• Errors become expensive to solve
• 2 stages missed ≈ 100x
• 3 stages missed ≈ 1000x
21/06/2016 ©odd.enterprises 5
Verification and Validation 1
Verification and validation occurs
between stages with appropriate
adaptions.
Verification and validation concern
the questions:
• Verification
Is it built in the right way?
• Validation
Is it built right?
21/06/2016 ©odd.enterprises 6
Verification and Validation 2
Verification and validation
are adapted for each stage.
• Specification
– Verification and
validation (of behaviours)
• Solution
– Testing and design
• Production
– Quality assurance and
control
• Analysis
– Utilisation and
elicitation
21/06/2016 ©odd.enterprises 7
ODD Elements
ODD Elements are single
generic parts of a
development.
• Divided into stage,
system and abstraction
level
• Higher level elements
will consist of
combined lower levels
• Each stage contains
different and distinct
elements
28/06/2016 ©odd.enterprises 8
Analysis Elements
Analysis links Production
and Specification stages
with tests solved and
created by each level.
• Analysis links
Production by elicitation
of customers
• Analysis links
Specification by
verification of
behaviours
22/06/2016 ©odd.enterprises 9
Specification Elements
Specification links
Analysis and Solution
stages with tests
solved and created by
each level.
• Specification links
Analysis through
solving of tests
• Specification links
Solution through
creation of tests
22/06/2016 ©odd.enterprises 10
Solution Elements
Solution links Specification
and Production stages with
tests solved and created by
each level.
• Solution links
Specification by design
according to tests
• Solution links
Production by quality
assurance tests
according to solution
22/06/2016 ©odd.enterprises 11
Production Elements
Production links Solution
and Analysis stages with
tests solved and created by
each level.
• Production links
Solution through quality
control according to
tests
• Production links
Analysis through
utilisation of products
features
22/06/2016 ©odd.enterprises 12
ODD Flow Chart
Flow chart to demonstrate a
generic ODD process.
Problems or obstacles to be
overcome are divided into 4 stages
with appropriate testing.
• Analysis
• Specification
• Solution
• Production
21/06/2016 ©odd.enterprises 13
Linking Tests 1
Tests link behaviours with
solutions through testing
and design.
• Solutions designed according to
tests from behaviours
• Each solution is a single element
of a product
• Unit testing is applied
• Test suite created and ran when
changes occur
21/06/2016 ©odd.enterprises 14
Linking Tests 2
Testing and design concerns
solutions created from
behaviours of a specification.
• Each solution implements 1 or
more behaviours
• Tests suite ran for any changes
or additions
• Created as with Test Driven
Development
21/06/2016 ©odd.enterprises 15
ODD Test Suites
Test suites implemented to
create a solution for software
and identify errors.
• Test suites contain individual
and combined unit tests
• Test suites are intended to be
implemented between all stages
• TDD process extended
throughout development to
create ODD
21/06/2016 ©odd.enterprises 16
Linking Behaviours to Situations 1
Decision tree adapts to any
situation and linked to a
specification by creating tests.
• Any situation can be described
by a decision tree
• Diagram appropriate for failure
mode effects and analysis
• Linked to a behaviour which
covers the situation
21/06/2016 ©odd.enterprises 17
Linking Behaviours to Situations 2
Each branch of a decision tree
results in a situation to be
covered by one or more
behaviours.
• Each situation is tested to
ensure coverage by specification
• Ensures situations are covered
before creation of solution
• All expected situations should
have an associated behaviour
21/06/2016 ©odd.enterprises 18
Linking Solution to Production 1
Solution must be produced with
consistent quality and often for
very large quantities.
• Solution assures and controls
quality of related production
• Tests are created for quality
assurance
• Tests passed give measure for
quality control
21/06/2016 ©odd.enterprises 19
Linking Solution to Production 2
Each element of a solution
creates a quality assurance test
which a production element
must pass.
• Quality assurance and control
based on probability
• Assurance will determine an
acceptable failure rate
• Control ensures failure rate is
acceptable
21/06/2016 ©odd.enterprises 20
Linking Production to Analysis 1
Linking production to analysis
ensures product features are
utilised and elicited.
• Features of product utilised in
practical situations by customers
• Elicitation after utilisation of
feature to find requirements
• Verifies current solutions and
identifies new obstacles
21/06/2016 ©odd.enterprises 21
Linking Production to Analysis 2
Linking production to analysis
has product features used as this
is how a customer sees a
product.
• New feature may cover
requirement but create
another
• Each product element and
level investigated separately
21/06/2016 ©odd.enterprises 22
ODD is 3D
21/06/2016 ©odd.enterprises 23
ODD without Tests
21/06/2016 ©odd.enterprises 24
ODD with Tests
21/06/2016 ©odd.enterprises 25
ODD with Passed Tests
21/06/2016 ©odd.enterprises 26
ODD Generic Flow Chart
Each stage of ODD is an adaption of
this generic flow chart.
Flow chart is adapted to provide:
• Analysis - Utilisation and
Elicitation
• Specification – Verification and
Validation
• Solution - Testing and Design
• Production – Quality Assurance
and Control
22/06/2016 ©odd.enterprises 27
Creating Tests 1
Creation of solutions inspired by
Behaviour Driven Development.
• Tests created by rewriting a
behaviour and designing test
• Design of solution according to
tests reduces debugging
• Testing and design may continue
until all behaviours implemented
22/06/2016 ©odd.enterprises 28
Creating Tests 2
Full test suite created using each
behaviour in specification.
• Creating a test first ensures an
objective is understood
• Design according to passing tests
reduces ambiguity
• Passing a test ensures behaviour
is implemented
22/06/2016 ©odd.enterprises 29
Flow Chart for Solution
1. Select behaviour which a solution
has to perform.
2. Test created to ensure solution
performs behaviour.
3. Solution designed to pass test.
4. Repeat until solution passes test.
5. Repeat until behaviours tested
and solutions designed.
6. Production stage begins.
22/06/2016 ©odd.enterprises 30
Flowchart for Production
1. Select solution which
production is to create.
2. Quality assurance test ensures
production creates solution.
3. Production begins.
4. Repeat until quality is
controlled.
5. Repeat until all production is
quality controlled.
6. Analysis stage begins.
22/06/2016 ©odd.enterprises 31
Flowchart for Analysis
1. Select feature to be elicited for
analysis.
2. Utilisation test is created for
feature.
3. Product is utilised by customers.
4. Repeat elicitation until sufficient
feedback obtained.
5. Repeat until all features in
production are tested.
6. Specification stage begins.
22/06/2016 ©odd.enterprises 32
Flowchart for Specification
1. Requirement selected to be
covered by behaviour.
2. Verification test is created.
3. Behaviour is specified according
to the test.
4. Repeat until behaviour is
validated.
5. Repeat until all requirements
are covered by behaviours.
6. Solution stage begins.
22/06/2016 ©odd.enterprises 33
ODD Materials
ODD is explained in further
presentations.
• Obstacle Driven
Development
• ODD: Requirements Analysis
• ODD: Extending a
Specification
• ODD: Extending TDD
• ODD: Extending V-models
• ODD Is Not Agile or Waterfall
ODD Is Not
Agile or
Waterfall
Obstacle Driven
Development
ODD:
Requirements
Analysis
ODD: Extending
a Specification
ODD: Extending
V-models
ODD:
Extending TDD
22/06/2016 ©odd.enterprises 34
Further Information and Questions
• Website
• Presentations
• Facebook
• Twitter
• Email
21/06/2016 ©odd.enterprises 35
Legal Stuff
References
Test Driven Development for Embedded C
James Grenning, 2011
Test Driven Development
http://en.wikipedia.org/wiki/Test-driven development
Behaviour Driven Development
http://en.wikipedia.org/wiki/Behavior-driven development
Unit Testing
http://en.wikipedia.org/wiki/Unit testing
Contact us for more information on sources and references.
Disclaimer
The ODD M-model and associated processes are provided by odd.enterprises and may be
used for any purpose whatsoever.
The names odd.enterprises and associated logos should not be used in any representation,
advertising, publicity or other manner whatsoever to endorse or promote any entity that
adopts or uses the model and/or associated processes.
odd.enterprises does not guarantee to provide support, consulting, training or assistance of
any kind with regards to the use of the model and/or processes including any updates.
You agree to indemnify odd.enterprises and its affiliates, officers, agents and employees
against any claim or demand including reasonable solicitors fees, related to your use,
reliance or adoption of the model and/or processes for any purpose whatsoever.
The model is provided by odd.enterprises “as is” and any express or implied warranties,
included but not limited to the implied warranties of merchantability and fitness for a
particular purpose are expressly disclaimed.
In no event shall odd.enterprises be liable for any damages whatsoever, including but not
limited to claims associated with the loss of data or profits, which may result from any
action in contract, negligence or other tortious claim that arises out of or in connection with
the use or performance of the model.
21/06/2016 ©odd.enterprises 36

Mais conteúdo relacionado

Mais procurados

The Role of Process Characterization in Process Validation
The Role of Process Characterization in Process ValidationThe Role of Process Characterization in Process Validation
The Role of Process Characterization in Process ValidationDavid Goodrich
 
Webinar validation of pharmaceutical manufacturing processes
Webinar  validation of pharmaceutical manufacturing processesWebinar  validation of pharmaceutical manufacturing processes
Webinar validation of pharmaceutical manufacturing processesDr. Ganesh Prasad
 
6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin
6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin
6 Steps to Accelerate the Development Cycle | Life Science Parker HannifinParker Hannifin Corporation
 
Product development Global prospective
Product development   Global prospective Product development   Global prospective
Product development Global prospective Guru Balaji .S
 
Is Standardization Possible in a Custom Single-use World | Parker domnick hunter
Is Standardization Possible in a Custom Single-use World | Parker domnick hunterIs Standardization Possible in a Custom Single-use World | Parker domnick hunter
Is Standardization Possible in a Custom Single-use World | Parker domnick hunterParker Hannifin Corporation
 
Pharmaceutical process validation (PV)
Pharmaceutical process validation (PV)  Pharmaceutical process validation (PV)
Pharmaceutical process validation (PV) Guru Balaji .S
 
How Design Controls & Risk Management Best Practices Reduce Customer Complain...
How Design Controls & Risk Management Best Practices Reduce Customer Complain...How Design Controls & Risk Management Best Practices Reduce Customer Complain...
How Design Controls & Risk Management Best Practices Reduce Customer Complain...Greenlight Guru
 
Basic concept of process validation
Basic concept of process validation Basic concept of process validation
Basic concept of process validation Bishnu Koirala
 
Handling of complaint.pptx
Handling of complaint.pptxHandling of complaint.pptx
Handling of complaint.pptxJagrutiKachchhi1
 
Qms 065 manufacturing-rework_procedure_sample
Qms 065 manufacturing-rework_procedure_sampleQms 065 manufacturing-rework_procedure_sample
Qms 065 manufacturing-rework_procedure_samplePhat Lu Anh
 
Life Sciences Product Development
Life Sciences Product DevelopmentLife Sciences Product Development
Life Sciences Product Developmentwraylk
 
Case study dre using 7 qc tools for problem solving
Case study dre using 7 qc tools for problem solvingCase study dre using 7 qc tools for problem solving
Case study dre using 7 qc tools for problem solvingAB
 
Scale up and post approval changes.pptx
Scale up and post approval changes.pptxScale up and post approval changes.pptx
Scale up and post approval changes.pptxJagrutiKachchhi1
 
Process Validation Presentation from BioTechLogic
Process Validation Presentation from BioTechLogicProcess Validation Presentation from BioTechLogic
Process Validation Presentation from BioTechLogicPeter Dellva
 
Processs validation
Processs validationProcesss validation
Processs validationavinashmane
 
Tackling the challenges of single-use manufacturing for ADCs
Tackling the challenges of single-use manufacturing for ADCsTackling the challenges of single-use manufacturing for ADCs
Tackling the challenges of single-use manufacturing for ADCsMilliporeSigma
 

Mais procurados (20)

The Role of Process Characterization in Process Validation
The Role of Process Characterization in Process ValidationThe Role of Process Characterization in Process Validation
The Role of Process Characterization in Process Validation
 
Webinar validation of pharmaceutical manufacturing processes
Webinar  validation of pharmaceutical manufacturing processesWebinar  validation of pharmaceutical manufacturing processes
Webinar validation of pharmaceutical manufacturing processes
 
6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin
6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin
6 Steps to Accelerate the Development Cycle | Life Science Parker Hannifin
 
Product development Global prospective
Product development   Global prospective Product development   Global prospective
Product development Global prospective
 
Is Standardization Possible in a Custom Single-use World | Parker domnick hunter
Is Standardization Possible in a Custom Single-use World | Parker domnick hunterIs Standardization Possible in a Custom Single-use World | Parker domnick hunter
Is Standardization Possible in a Custom Single-use World | Parker domnick hunter
 
Quality by design
Quality by designQuality by design
Quality by design
 
Pharmaceutical process validation (PV)
Pharmaceutical process validation (PV)  Pharmaceutical process validation (PV)
Pharmaceutical process validation (PV)
 
How Design Controls & Risk Management Best Practices Reduce Customer Complain...
How Design Controls & Risk Management Best Practices Reduce Customer Complain...How Design Controls & Risk Management Best Practices Reduce Customer Complain...
How Design Controls & Risk Management Best Practices Reduce Customer Complain...
 
CPSC Strategy,Testing and Certification
CPSC Strategy,Testing and CertificationCPSC Strategy,Testing and Certification
CPSC Strategy,Testing and Certification
 
Basic concept of process validation
Basic concept of process validation Basic concept of process validation
Basic concept of process validation
 
Handling of complaint.pptx
Handling of complaint.pptxHandling of complaint.pptx
Handling of complaint.pptx
 
Qms 065 manufacturing-rework_procedure_sample
Qms 065 manufacturing-rework_procedure_sampleQms 065 manufacturing-rework_procedure_sample
Qms 065 manufacturing-rework_procedure_sample
 
Life Sciences Product Development
Life Sciences Product DevelopmentLife Sciences Product Development
Life Sciences Product Development
 
Case study dre using 7 qc tools for problem solving
Case study dre using 7 qc tools for problem solvingCase study dre using 7 qc tools for problem solving
Case study dre using 7 qc tools for problem solving
 
Scale up and post approval changes.pptx
Scale up and post approval changes.pptxScale up and post approval changes.pptx
Scale up and post approval changes.pptx
 
Process Validation Presentation from BioTechLogic
Process Validation Presentation from BioTechLogicProcess Validation Presentation from BioTechLogic
Process Validation Presentation from BioTechLogic
 
Processs validation
Processs validationProcesss validation
Processs validation
 
Tackling the challenges of single-use manufacturing for ADCs
Tackling the challenges of single-use manufacturing for ADCsTackling the challenges of single-use manufacturing for ADCs
Tackling the challenges of single-use manufacturing for ADCs
 
Cpsia
CpsiaCpsia
Cpsia
 
Validation ksd
Validation ksdValidation ksd
Validation ksd
 

Destaque

M. Polasek: Molecular Imaging of Liver Fibrosis Poster
M. Polasek: Molecular Imaging of Liver Fibrosis PosterM. Polasek: Molecular Imaging of Liver Fibrosis Poster
M. Polasek: Molecular Imaging of Liver Fibrosis Posterpolasek1
 
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...Anna McCreery
 
Rising to Challenges in Climate Change Education
Rising to Challenges in Climate Change EducationRising to Challenges in Climate Change Education
Rising to Challenges in Climate Change EducationProf Simon Haslett
 
Characteristic of anti-sentimental comedy with referance "The school for scan...
Characteristic of anti-sentimental comedy with referance "The school for scan...Characteristic of anti-sentimental comedy with referance "The school for scan...
Characteristic of anti-sentimental comedy with referance "The school for scan...trivedidisha
 
Katakerja2013upsr 130326223013-phpapp01
Katakerja2013upsr 130326223013-phpapp01Katakerja2013upsr 130326223013-phpapp01
Katakerja2013upsr 130326223013-phpapp01Zahari Zerizz
 
Adequacy criteria for cytology specimens by Dr. Mahra Nourbakhsh
Adequacy criteria for cytology specimens by Dr. Mahra NourbakhshAdequacy criteria for cytology specimens by Dr. Mahra Nourbakhsh
Adequacy criteria for cytology specimens by Dr. Mahra NourbakhshMahra Nourbakhsh
 
Get started with dropbox
Get started with dropboxGet started with dropbox
Get started with dropboxTamana Dabasa
 
Introduction to communication system lecture5
Introduction to communication system lecture5Introduction to communication system lecture5
Introduction to communication system lecture5Jumaan Ally Mohamed
 
Katakerja 140614232839-phpapp01
Katakerja 140614232839-phpapp01Katakerja 140614232839-phpapp01
Katakerja 140614232839-phpapp01Zahari Zerizz
 
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...Creencias, opiniones y actitudes de la población general hacia el uso de opiá...
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...Observatoriodolor
 

Destaque (14)

M. Polasek: Molecular Imaging of Liver Fibrosis Poster
M. Polasek: Molecular Imaging of Liver Fibrosis PosterM. Polasek: Molecular Imaging of Liver Fibrosis Poster
M. Polasek: Molecular Imaging of Liver Fibrosis Poster
 
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...
House Parties for Energy Efficiency: Outcomes of Community Organizing for Ene...
 
RajivGandhi S
RajivGandhi SRajivGandhi S
RajivGandhi S
 
Rising to Challenges in Climate Change Education
Rising to Challenges in Climate Change EducationRising to Challenges in Climate Change Education
Rising to Challenges in Climate Change Education
 
Kata kerja
Kata kerja Kata kerja
Kata kerja
 
Characteristic of anti-sentimental comedy with referance "The school for scan...
Characteristic of anti-sentimental comedy with referance "The school for scan...Characteristic of anti-sentimental comedy with referance "The school for scan...
Characteristic of anti-sentimental comedy with referance "The school for scan...
 
Digital Communication Unit 1
Digital Communication Unit 1Digital Communication Unit 1
Digital Communication Unit 1
 
Katakerja2013upsr 130326223013-phpapp01
Katakerja2013upsr 130326223013-phpapp01Katakerja2013upsr 130326223013-phpapp01
Katakerja2013upsr 130326223013-phpapp01
 
Purnachandra_Hadoop_N
Purnachandra_Hadoop_NPurnachandra_Hadoop_N
Purnachandra_Hadoop_N
 
Adequacy criteria for cytology specimens by Dr. Mahra Nourbakhsh
Adequacy criteria for cytology specimens by Dr. Mahra NourbakhshAdequacy criteria for cytology specimens by Dr. Mahra Nourbakhsh
Adequacy criteria for cytology specimens by Dr. Mahra Nourbakhsh
 
Get started with dropbox
Get started with dropboxGet started with dropbox
Get started with dropbox
 
Introduction to communication system lecture5
Introduction to communication system lecture5Introduction to communication system lecture5
Introduction to communication system lecture5
 
Katakerja 140614232839-phpapp01
Katakerja 140614232839-phpapp01Katakerja 140614232839-phpapp01
Katakerja 140614232839-phpapp01
 
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...Creencias, opiniones y actitudes de la población general hacia el uso de opiá...
Creencias, opiniones y actitudes de la población general hacia el uso de opiá...
 

Semelhante a ODD Testing

Obstacle Driven Development Stages
Obstacle Driven Development StagesObstacle Driven Development Stages
Obstacle Driven Development StagesJonathan Herring
 
ODD: Extending a Specification 1.3
ODD: Extending a Specification 1.3ODD: Extending a Specification 1.3
ODD: Extending a Specification 1.3Jonathan Herring
 
ODD: Extending V-model Development 1.3
ODD: Extending V-model Development 1.3ODD: Extending V-model Development 1.3
ODD: Extending V-model Development 1.3Jonathan Herring
 
ODD: Extending V-model Development 1.2
ODD: Extending V-model Development 1.2ODD: Extending V-model Development 1.2
ODD: Extending V-model Development 1.2Jonathan Herring
 
ODD is not Agile or Waterfall
ODD is not Agile or WaterfallODD is not Agile or Waterfall
ODD is not Agile or WaterfallJonathan Herring
 
ODD: Extending a Specification 1.2
ODD: Extending a Specification 1.2ODD: Extending a Specification 1.2
ODD: Extending a Specification 1.2Jonathan Herring
 
Obstacle Driven Development
Obstacle Driven DevelopmentObstacle Driven Development
Obstacle Driven DevelopmentJonathan Herring
 
Obstacle Driven Development Models
Obstacle Driven Development ModelsObstacle Driven Development Models
Obstacle Driven Development ModelsJonathan Herring
 
ODD+PC: How to Get Stuff Right
ODD+PC: How to Get Stuff RightODD+PC: How to Get Stuff Right
ODD+PC: How to Get Stuff RightJonathan Herring
 
Introduction to Agile Testing
Introduction to Agile TestingIntroduction to Agile Testing
Introduction to Agile TestingvodQA
 
SDLC - Software Development Life Cycle
SDLC - Software Development Life CycleSDLC - Software Development Life Cycle
SDLC - Software Development Life CycleSaravanan Manoharan
 
Software Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsSoftware Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsKMS Technology
 
final no-2 U too brutus persentation[1].pptx
final no-2 U too brutus persentation[1].pptxfinal no-2 U too brutus persentation[1].pptx
final no-2 U too brutus persentation[1].pptxssusera46859
 
Optimizing Product Realization Costs Across the Value Chain
Optimizing Product Realization Costs Across the Value ChainOptimizing Product Realization Costs Across the Value Chain
Optimizing Product Realization Costs Across the Value ChainCognizant
 

Semelhante a ODD Testing (20)

Obstacle Driven Development Stages
Obstacle Driven Development StagesObstacle Driven Development Stages
Obstacle Driven Development Stages
 
ODD: Extending a Specification 1.3
ODD: Extending a Specification 1.3ODD: Extending a Specification 1.3
ODD: Extending a Specification 1.3
 
ODD: Extending V-model Development 1.3
ODD: Extending V-model Development 1.3ODD: Extending V-model Development 1.3
ODD: Extending V-model Development 1.3
 
ODD: Extending Agile 1.3
ODD: Extending Agile 1.3ODD: Extending Agile 1.3
ODD: Extending Agile 1.3
 
ODD + Project Control 1.0
ODD + Project Control 1.0ODD + Project Control 1.0
ODD + Project Control 1.0
 
ODD: Extending V-model Development 1.2
ODD: Extending V-model Development 1.2ODD: Extending V-model Development 1.2
ODD: Extending V-model Development 1.2
 
ODD: Success and Failure
ODD: Success and FailureODD: Success and Failure
ODD: Success and Failure
 
ODD + Project Control 0.9
ODD + Project Control 0.9ODD + Project Control 0.9
ODD + Project Control 0.9
 
ODD is not Agile or Waterfall
ODD is not Agile or WaterfallODD is not Agile or Waterfall
ODD is not Agile or Waterfall
 
ODD: Extending a Specification 1.2
ODD: Extending a Specification 1.2ODD: Extending a Specification 1.2
ODD: Extending a Specification 1.2
 
Obstacle Driven Development
Obstacle Driven DevelopmentObstacle Driven Development
Obstacle Driven Development
 
Obstacle Driven Development Models
Obstacle Driven Development ModelsObstacle Driven Development Models
Obstacle Driven Development Models
 
ODD+PC: How to Get Stuff Right
ODD+PC: How to Get Stuff RightODD+PC: How to Get Stuff Right
ODD+PC: How to Get Stuff Right
 
ODD Definitions
ODD DefinitionsODD Definitions
ODD Definitions
 
Introduction to Agile Testing
Introduction to Agile TestingIntroduction to Agile Testing
Introduction to Agile Testing
 
SDLC - Software Development Life Cycle
SDLC - Software Development Life CycleSDLC - Software Development Life Cycle
SDLC - Software Development Life Cycle
 
Software Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing TrendsSoftware Testing Process, Testing Automation and Software Testing Trends
Software Testing Process, Testing Automation and Software Testing Trends
 
ODD: OODA Evolution
ODD: OODA EvolutionODD: OODA Evolution
ODD: OODA Evolution
 
final no-2 U too brutus persentation[1].pptx
final no-2 U too brutus persentation[1].pptxfinal no-2 U too brutus persentation[1].pptx
final no-2 U too brutus persentation[1].pptx
 
Optimizing Product Realization Costs Across the Value Chain
Optimizing Product Realization Costs Across the Value ChainOptimizing Product Realization Costs Across the Value Chain
Optimizing Product Realization Costs Across the Value Chain
 

Mais de Jonathan Herring

How to Use Project Control 1.0
How to Use Project Control 1.0How to Use Project Control 1.0
How to Use Project Control 1.0Jonathan Herring
 
ODD and Project Control v0.957
ODD and Project Control v0.957ODD and Project Control v0.957
ODD and Project Control v0.957Jonathan Herring
 
Obstacle Driven Development Report v0.9
Obstacle Driven Development Report v0.9Obstacle Driven Development Report v0.9
Obstacle Driven Development Report v0.9Jonathan Herring
 
ODD: Extending Requirements Analysis 1.2
ODD: Extending Requirements Analysis 1.2ODD: Extending Requirements Analysis 1.2
ODD: Extending Requirements Analysis 1.2Jonathan Herring
 

Mais de Jonathan Herring (7)

How to Use Project Control 1.0
How to Use Project Control 1.0How to Use Project Control 1.0
How to Use Project Control 1.0
 
How to be Innovative
How to be InnovativeHow to be Innovative
How to be Innovative
 
ODD and Project Control v0.957
ODD and Project Control v0.957ODD and Project Control v0.957
ODD and Project Control v0.957
 
Obstacle Driven Development Report v0.9
Obstacle Driven Development Report v0.9Obstacle Driven Development Report v0.9
Obstacle Driven Development Report v0.9
 
ODD: Evolution (short)
ODD: Evolution (short)ODD: Evolution (short)
ODD: Evolution (short)
 
ODD Comparison
ODD ComparisonODD Comparison
ODD Comparison
 
ODD: Extending Requirements Analysis 1.2
ODD: Extending Requirements Analysis 1.2ODD: Extending Requirements Analysis 1.2
ODD: Extending Requirements Analysis 1.2
 

Último

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 

Último (20)

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 

ODD Testing

  • 2. Testing in History 1 Testing ideas is implicit to science and technology. • Testing implemented on products for many years • Ideas are assumptions without sufficient testing • Todays technology is a result of centuries of tests 21/06/2016 ©odd.enterprises 2
  • 3. Testing in History 2 Testing implemented on certain products for many years. • Tests must replicate real world conditions • Armour designed to be bullet proof is tested • Non standard components required this approach 21/06/2016 ©odd.enterprises 3
  • 4. Cost of Failure Cost of failure is often greater than associated costs related to a successful development. • Undetected errors may become very costly • Increased use of specification can reduce costs overall • Cost increases exponentially for each stage a bug is undetected 21/06/2016 ©odd.enterprises 4
  • 5. Fail Early, Fail Often Achieving success with ODD is through identifying, correcting and preventing failure. • Undiscovered errors cost 10x more to fix by next stage • Errors become expensive to solve • 2 stages missed ≈ 100x • 3 stages missed ≈ 1000x 21/06/2016 ©odd.enterprises 5
  • 6. Verification and Validation 1 Verification and validation occurs between stages with appropriate adaptions. Verification and validation concern the questions: • Verification Is it built in the right way? • Validation Is it built right? 21/06/2016 ©odd.enterprises 6
  • 7. Verification and Validation 2 Verification and validation are adapted for each stage. • Specification – Verification and validation (of behaviours) • Solution – Testing and design • Production – Quality assurance and control • Analysis – Utilisation and elicitation 21/06/2016 ©odd.enterprises 7
  • 8. ODD Elements ODD Elements are single generic parts of a development. • Divided into stage, system and abstraction level • Higher level elements will consist of combined lower levels • Each stage contains different and distinct elements 28/06/2016 ©odd.enterprises 8
  • 9. Analysis Elements Analysis links Production and Specification stages with tests solved and created by each level. • Analysis links Production by elicitation of customers • Analysis links Specification by verification of behaviours 22/06/2016 ©odd.enterprises 9
  • 10. Specification Elements Specification links Analysis and Solution stages with tests solved and created by each level. • Specification links Analysis through solving of tests • Specification links Solution through creation of tests 22/06/2016 ©odd.enterprises 10
  • 11. Solution Elements Solution links Specification and Production stages with tests solved and created by each level. • Solution links Specification by design according to tests • Solution links Production by quality assurance tests according to solution 22/06/2016 ©odd.enterprises 11
  • 12. Production Elements Production links Solution and Analysis stages with tests solved and created by each level. • Production links Solution through quality control according to tests • Production links Analysis through utilisation of products features 22/06/2016 ©odd.enterprises 12
  • 13. ODD Flow Chart Flow chart to demonstrate a generic ODD process. Problems or obstacles to be overcome are divided into 4 stages with appropriate testing. • Analysis • Specification • Solution • Production 21/06/2016 ©odd.enterprises 13
  • 14. Linking Tests 1 Tests link behaviours with solutions through testing and design. • Solutions designed according to tests from behaviours • Each solution is a single element of a product • Unit testing is applied • Test suite created and ran when changes occur 21/06/2016 ©odd.enterprises 14
  • 15. Linking Tests 2 Testing and design concerns solutions created from behaviours of a specification. • Each solution implements 1 or more behaviours • Tests suite ran for any changes or additions • Created as with Test Driven Development 21/06/2016 ©odd.enterprises 15
  • 16. ODD Test Suites Test suites implemented to create a solution for software and identify errors. • Test suites contain individual and combined unit tests • Test suites are intended to be implemented between all stages • TDD process extended throughout development to create ODD 21/06/2016 ©odd.enterprises 16
  • 17. Linking Behaviours to Situations 1 Decision tree adapts to any situation and linked to a specification by creating tests. • Any situation can be described by a decision tree • Diagram appropriate for failure mode effects and analysis • Linked to a behaviour which covers the situation 21/06/2016 ©odd.enterprises 17
  • 18. Linking Behaviours to Situations 2 Each branch of a decision tree results in a situation to be covered by one or more behaviours. • Each situation is tested to ensure coverage by specification • Ensures situations are covered before creation of solution • All expected situations should have an associated behaviour 21/06/2016 ©odd.enterprises 18
  • 19. Linking Solution to Production 1 Solution must be produced with consistent quality and often for very large quantities. • Solution assures and controls quality of related production • Tests are created for quality assurance • Tests passed give measure for quality control 21/06/2016 ©odd.enterprises 19
  • 20. Linking Solution to Production 2 Each element of a solution creates a quality assurance test which a production element must pass. • Quality assurance and control based on probability • Assurance will determine an acceptable failure rate • Control ensures failure rate is acceptable 21/06/2016 ©odd.enterprises 20
  • 21. Linking Production to Analysis 1 Linking production to analysis ensures product features are utilised and elicited. • Features of product utilised in practical situations by customers • Elicitation after utilisation of feature to find requirements • Verifies current solutions and identifies new obstacles 21/06/2016 ©odd.enterprises 21
  • 22. Linking Production to Analysis 2 Linking production to analysis has product features used as this is how a customer sees a product. • New feature may cover requirement but create another • Each product element and level investigated separately 21/06/2016 ©odd.enterprises 22
  • 23. ODD is 3D 21/06/2016 ©odd.enterprises 23
  • 24. ODD without Tests 21/06/2016 ©odd.enterprises 24
  • 25. ODD with Tests 21/06/2016 ©odd.enterprises 25
  • 26. ODD with Passed Tests 21/06/2016 ©odd.enterprises 26
  • 27. ODD Generic Flow Chart Each stage of ODD is an adaption of this generic flow chart. Flow chart is adapted to provide: • Analysis - Utilisation and Elicitation • Specification – Verification and Validation • Solution - Testing and Design • Production – Quality Assurance and Control 22/06/2016 ©odd.enterprises 27
  • 28. Creating Tests 1 Creation of solutions inspired by Behaviour Driven Development. • Tests created by rewriting a behaviour and designing test • Design of solution according to tests reduces debugging • Testing and design may continue until all behaviours implemented 22/06/2016 ©odd.enterprises 28
  • 29. Creating Tests 2 Full test suite created using each behaviour in specification. • Creating a test first ensures an objective is understood • Design according to passing tests reduces ambiguity • Passing a test ensures behaviour is implemented 22/06/2016 ©odd.enterprises 29
  • 30. Flow Chart for Solution 1. Select behaviour which a solution has to perform. 2. Test created to ensure solution performs behaviour. 3. Solution designed to pass test. 4. Repeat until solution passes test. 5. Repeat until behaviours tested and solutions designed. 6. Production stage begins. 22/06/2016 ©odd.enterprises 30
  • 31. Flowchart for Production 1. Select solution which production is to create. 2. Quality assurance test ensures production creates solution. 3. Production begins. 4. Repeat until quality is controlled. 5. Repeat until all production is quality controlled. 6. Analysis stage begins. 22/06/2016 ©odd.enterprises 31
  • 32. Flowchart for Analysis 1. Select feature to be elicited for analysis. 2. Utilisation test is created for feature. 3. Product is utilised by customers. 4. Repeat elicitation until sufficient feedback obtained. 5. Repeat until all features in production are tested. 6. Specification stage begins. 22/06/2016 ©odd.enterprises 32
  • 33. Flowchart for Specification 1. Requirement selected to be covered by behaviour. 2. Verification test is created. 3. Behaviour is specified according to the test. 4. Repeat until behaviour is validated. 5. Repeat until all requirements are covered by behaviours. 6. Solution stage begins. 22/06/2016 ©odd.enterprises 33
  • 34. ODD Materials ODD is explained in further presentations. • Obstacle Driven Development • ODD: Requirements Analysis • ODD: Extending a Specification • ODD: Extending TDD • ODD: Extending V-models • ODD Is Not Agile or Waterfall ODD Is Not Agile or Waterfall Obstacle Driven Development ODD: Requirements Analysis ODD: Extending a Specification ODD: Extending V-models ODD: Extending TDD 22/06/2016 ©odd.enterprises 34
  • 35. Further Information and Questions • Website • Presentations • Facebook • Twitter • Email 21/06/2016 ©odd.enterprises 35
  • 36. Legal Stuff References Test Driven Development for Embedded C James Grenning, 2011 Test Driven Development http://en.wikipedia.org/wiki/Test-driven development Behaviour Driven Development http://en.wikipedia.org/wiki/Behavior-driven development Unit Testing http://en.wikipedia.org/wiki/Unit testing Contact us for more information on sources and references. Disclaimer The ODD M-model and associated processes are provided by odd.enterprises and may be used for any purpose whatsoever. The names odd.enterprises and associated logos should not be used in any representation, advertising, publicity or other manner whatsoever to endorse or promote any entity that adopts or uses the model and/or associated processes. odd.enterprises does not guarantee to provide support, consulting, training or assistance of any kind with regards to the use of the model and/or processes including any updates. You agree to indemnify odd.enterprises and its affiliates, officers, agents and employees against any claim or demand including reasonable solicitors fees, related to your use, reliance or adoption of the model and/or processes for any purpose whatsoever. The model is provided by odd.enterprises “as is” and any express or implied warranties, included but not limited to the implied warranties of merchantability and fitness for a particular purpose are expressly disclaimed. In no event shall odd.enterprises be liable for any damages whatsoever, including but not limited to claims associated with the loss of data or profits, which may result from any action in contract, negligence or other tortious claim that arises out of or in connection with the use or performance of the model. 21/06/2016 ©odd.enterprises 36