SlideShare a Scribd company logo
FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7.
Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com
Test Driven Development II - Advanced
Richard Ettema, AEGIS.net, Inc.
Presented by
• Name: Richard Ettema
• Position:
• Lead Consultant, AEGIS.net, Inc.
• FHIR® Certified Implementer
• Background:
• 34+ years IT industry experience
• 14+ years leading HIT development/implementation efforts
• 4+ years contributing to the HL7® FHIR® specification (focus on testing)
• Sr. Architect / Lead Developer for the Touchstone Project
• Author of the AEGIS WildFHIR public test server and client
Test Driven Development with FHIR
Intro Session Review
• To ensure interoperability between applications claiming
conformance to the specification, a testing framework has been
established within the FHIR specification itself
https://www.hl7.org/fhir/STU3/testing.html
• This framework defines a Test Engine for processing a TestScript
resource as a natural language, computable format of a test case
• The TestScript resource is an implementation-agnostic description of
tests that allows test engines to evaluate if a FHIR implementation
conforms with the FHIR specification
https://www.hl7.org/fhir/STU3/testscript.html
• Testing workflow example
• How can we trust that the correction is being tested in the same way?
Can we trust either test outcome?
Known data facilitates known, expected outcomes
We will review and examine how to ensure “Reliable and Repeatable Testing”
during the Hands-on Exercises using a “Two Users, Same Data” scenario
Test Passes
Run Test
Again
Developer
Correction
Test FailsRun Test
Reliable and Repeatable Testing
Identifying Your Testing Criteria; a.k.a. Asserts
• Testing simple values
• Is this the patient I expected?
• Is this the operation response I expected?
• Did I get multiple matches when I expected one?
• Testing specification conformance
• Is this element required?
• Is this code value correct?
• Testing conditionality or constraints
• Can this element be expressed more than one way and still be compliant?
• Is this element is only required when another element is present?
Asserts can perform…
• simple operations
• standard assert operators are constrained to the following: equals |
notEquals | in | notIn | greaterThan | lessThan | empty | notEmpty |
contains | notContains | eval
• specification allows for use of XPath or JSONPath expressions
• complex evaluations
• specification allows for rules to be defined within the assert
• specification allows for use of FHIRPath* expressions
*FHIRPath is supported within the TestScript resource and by the Touchstone test engine, but will not be a
focus of this session. To learn more about FHIRPath, see http://hl7.org/fhirpath
Complex Asserts
• Are used when testing conditionality, constraints or simplifying an
existing test construct
• Support the use of FHIRPath
• FHIRPath has expressions, functions, operations
• Far more functionality than found in the simple assert operators
• Built-in expressions such as dateTime and quantity
• Expressions can contain operators
• Functions like isDistinct, count, subsetOf, supersetOf
• Support Rules and Rulesets (high level language scripted logic)
• Touchstone Rules Engine supports Groovy, Schematron and XSLT
Complex Asserts - FHIRPath Example
• FHIRPath provides a syntax neutral way to access the contents of a
resource and can simplify assert logic constructs
Assert condition:
“Confirm that the searchset Bundle total number of entries is at least
one (1).”
• Let’s compare XPath and JSONPath to FHIRPath…
Complex Asserts - FHIRPath Example
Comparison with XPath and JSONPath
• XPath assert
<assert>
<operation value=“greaterThan” />
<path value=“/Bundle/total” />
<value value=“0” />
</assert>
• JSONPath assert
<assert>
<operation value=“greaterThan” />
<path value=“.total” />
<value value=“0” />
</assert>
• FHIRPath assert (equivalent logic)
<assert>
<expression value=“Bundle.total.toInteger() &gt; 0” />
</assert>
• FHIRPath assert (alternative logic)
<assert>
<expression value=“Bundle.entry.count() &gt; 0” />
</assert>
Complex Asserts - Rules and Rulesets
• The TestScript resource allows the use of Rules and Rulesets within
the assert
• Rules are called during TestScript execution
• In Touchstone, the Rules are hosted within the Test Definition folders
• Rules may be viewed and will be displayed in Test Results if selected
• Rulesets are simply collections of one or more Rules
• Allows for the definition of a group of Rules to be referenced within the
TestScript in an efficient manner
We will review and examine Rules and Rulesets during the Hands-on Exercises
FHIR Client or Peer-to-Peer Testing
• TestScripts in Touchstone can be either Server-only, Client (Peer-to-
Peer), or Multi-actor
• Server-only: Touchstone initiates requests to the destination FHIR System and
evaluates the response
• Client (Peer-to-Peer): Touchstone waits for a request from the origin FHIR
System to be received, evaluates the request, sends to the destination FHIR
System, and evaluates the response
• Multi-actor: Touchstone may act as the initiating system along with other
FHIR Test Systems acting as either a Client or Server
Client (Peer-to-Peer) Testing - Test Setup
• Select a Client TestScript from the
Test Definitions list
• Select and fill in any test data
necessary for test execution
• Origin Test System (Client)
• Destination Test System (Server)
• (Dynamic) Variables
Client (Peer-to-Peer) Testing - Test Execution
Client (Peer-to-Peer) Testing - TestScript Execution
We will review and examine Client Testing during the Hands-on Exercises
Captured Message Exchanges
• The Exchanges dashboard in Touchstone allows users to view all captured request
and response messages
• Touchstone will match an exchange with a test execution using these checks:
• If your test server is already defined within Touchstone and is publicly accessible, the message can be
matched by originating IP address
• If that is not possible, the system attempts to use USER_KEY and ORG_KEY
• Else, the system cannot match the message to a test execution
USER_KEY and ORG_KEY
• USER_KEY and ORG_KEY are
special placeholders
• They can be sent by the client
system as an HTTP request header
or within the request payload
• They identify the client system
when the machine name or IP
address would not
Introducing the Touchstone APIs
• Test executions can be launched and monitored via remote RESTful
web services
• Provides the means to integrate Touchstone into your organization’s
test executions for:
• Internal automated regressions tests
• Continuous Integration build processes
• Documentation and example messages are available
• Supported formats – JSON and XML
Touchstone API Capabilities
• The Touchstone APIs allow for many of the same non-administrative
functions as the User Interface
• Test executions launched on behalf of a remote test user via
Touchstone API will be visible to all members of your organization on
the Touchstone UI
• Any member of your organization can log in to the Touchstone UI and
investigate test failures if needed
Touchstone API Services
POST authenticate  Authenticate with Touchstone; return new API session key
POST testExecution  Launch a new test execution for an existing Test Setup
GET testExecution  Return the status of a know test execution
GET testExecDetail  Return summary status of all test execution TestScripts
GET scriptExecDetail  Return test execution single TestScript details
GET testReport  Same as GET scriptExecDetail except returns FHIR TestReport
Touchstone API - Jenkins CI Server Integration Example
• The Touchstone User Guide documents a Jenkins CI Server Integration
Example
• https://touchstone.aegis.net/touchstone/TouchstoneUserGuide, section
‘Touchstone API – Jenkins Integration Example’
• Illustrates the use of the Jenkins Groovy Plugin
• Builds on the example code from the previous ‘Touchstone API – Definition’
section
Due to not having a publicly available Jenkins CI Server at this event, there is no
corresponding Hands-on Exercises for this topic.
Conformance Testing
• Conformance Testing validates a system against known standards
• FHIR Specification (including Implementation Guides)
• Version support (forward/backward compatibility)
• Continuous Conformance Testing shows that an organization is
currently conformant, but also committed to remain conformant
• Future development minded - interoperability needs to be addressed on a
continuous basis
• Development Aid - developers can integrate FHIR conformance testing into
their build cycle to avoid costly conformance code rewrites later
• Regression testing - validate that changes and enhancements are also
conformant
Touchstone Conformance Analytics
Hands on Exercises
• Reliable and Repeatable Testing - Two Users, Same Data
• Complex Asserts
• FHIRPath comparison to XPath and JSONPath
• Rules and Rulesets
• Advanced TestScripts
• FHIR Client / Peer-to-Peer
• Conformance Analytics Dashboard
• Connectathon Test Track
• We will continue our review of one of the test tracks for the next HL7 FHIR
Connectathon 17 event and the development of TestScripts
Discussion (Q & A)
FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7.
Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com
Thank you!

More Related Content

PPTX
Furore devdays 2017 - workflow
PPTX
Furore devdays2017 tdd-1-intro
PPTX
Building bridges devdays 2017- powerpoint template
PPTX
Whats new (grahame)
PPTX
Security overview (grahame)
PPTX
Fhir dev days 2017 fhir profiling - overview and introduction v07
PPTX
Devdays 2017 implementation guide authoring - ardon toonstra
PPTX
fhir-documents
Furore devdays 2017 - workflow
Furore devdays2017 tdd-1-intro
Building bridges devdays 2017- powerpoint template
Whats new (grahame)
Security overview (grahame)
Fhir dev days 2017 fhir profiling - overview and introduction v07
Devdays 2017 implementation guide authoring - ardon toonstra
fhir-documents

What's hot (20)

PPTX
Furore devdays2017 general-introtofhir
PPTX
Profiling with clin fhir
PPTX
Furore devdays 2017- profiling academy - profiling guidelines v1
PPTX
Fhir foundation (grahame)
PPTX
Dev days 2017 questionnaires (brian postlethwaite)
PPTX
Furore devdays 2017-sdc (lloyd)
PPTX
Fire kit ios (r-baldwin)
PPTX
Fhir dev days_basic_fhir_terminology_services
PPTX
Furore devdays 2017- rdf2(solbrig)
PPTX
Advanced .net api (ewout)
PPTX
Fhir tooling (grahame)
PPTX
20171116 rene spronk_profiling_governance
PPTX
Beginners .net api dev days2017
PPTX
Vonk fhir facade (christiaan)
PPTX
Dev days 2017 advanced directories (brian postlethwaite)
PPTX
final Keynote (grahame)
PPTX
Building a Scenario using clinFHIR
PDF
Integrating with the epic platform fhir dev days 17
PPTX
Validation in net and java (ewout james)
PPTX
Furore devdays 2017- rdf1(solbrig)
Furore devdays2017 general-introtofhir
Profiling with clin fhir
Furore devdays 2017- profiling academy - profiling guidelines v1
Fhir foundation (grahame)
Dev days 2017 questionnaires (brian postlethwaite)
Furore devdays 2017-sdc (lloyd)
Fire kit ios (r-baldwin)
Fhir dev days_basic_fhir_terminology_services
Furore devdays 2017- rdf2(solbrig)
Advanced .net api (ewout)
Fhir tooling (grahame)
20171116 rene spronk_profiling_governance
Beginners .net api dev days2017
Vonk fhir facade (christiaan)
Dev days 2017 advanced directories (brian postlethwaite)
final Keynote (grahame)
Building a Scenario using clinFHIR
Integrating with the epic platform fhir dev days 17
Validation in net and java (ewout james)
Furore devdays 2017- rdf1(solbrig)
Ad

Similar to Furore devdays2017 tdd-2-advanced (20)

PPTX
Writing Acceptance Tests Using Fitnesse
PDF
Choosing right-automation-tool
PPTX
Accelerate and Automate PeopleSoft 9.2/9.1 Testing with PeopleSoft Test Frame...
PDF
KrishnaToolComparisionPPT.pdf
PPTX
FUNTASY - Functional testing automated system
PPTX
Beginners overview of automated testing with Rspec
PPTX
Unit Testng with PHP Unit - A Step by Step Training
PPTX
AUTOMATION TESTING tools extensive application
PDF
No Devops Without Continuous Testing
PDF
Test Automation using UiPath Test Suite - Developer Circle Part-3 - 07262022.pdf
PDF
Best Practices in Web Service Design
PPTX
Testing, a pragmatic approach
PPTX
Getting Started with Test-Driven Development at Longhorn PHP 2023
PDF
Perforce Web Services
PPT
Context Driven Automation Gtac 2008
PPTX
26.1a.Introduction to DEVOPS_v2.pptx
PDF
Automated Developer Testing: Achievements and Challenges
PDF
Acceptance & Functional Testing with Codeception - SunshinePHP 2016
PPTX
BDD for APIs
PDF
Acceptance & Functional Testing with Codeception - Devspace 2015
Writing Acceptance Tests Using Fitnesse
Choosing right-automation-tool
Accelerate and Automate PeopleSoft 9.2/9.1 Testing with PeopleSoft Test Frame...
KrishnaToolComparisionPPT.pdf
FUNTASY - Functional testing automated system
Beginners overview of automated testing with Rspec
Unit Testng with PHP Unit - A Step by Step Training
AUTOMATION TESTING tools extensive application
No Devops Without Continuous Testing
Test Automation using UiPath Test Suite - Developer Circle Part-3 - 07262022.pdf
Best Practices in Web Service Design
Testing, a pragmatic approach
Getting Started with Test-Driven Development at Longhorn PHP 2023
Perforce Web Services
Context Driven Automation Gtac 2008
26.1a.Introduction to DEVOPS_v2.pptx
Automated Developer Testing: Achievements and Challenges
Acceptance & Functional Testing with Codeception - SunshinePHP 2016
BDD for APIs
Acceptance & Functional Testing with Codeception - Devspace 2015
Ad

More from DevDays (14)

PPTX
Consent dev days
PPTX
Mohannad hussain dicom and imaging tools
PPTX
Mohannad hussain community track - siim dataset & dico mweb proxy
PPTX
Transforming other content (grahame)
PPTX
Structure definition 101 (ewout)
PPTX
Quality improvement dev days-2017
PPTX
Furore devdays 2017- oai
PPTX
Furore devdays 2017 - implementation guides (lloyd)
PPTX
Connectathon opening 2017
PPTX
20171127 rene spronk_messaging_the_unloved_paradigm
PPTX
Opening student track
PPTX
Furore devdays 2017- continua implementing fhir
PPTX
Fhir dev days_advanced_fhir_terminology_services
PPTX
Distributing cds dev days-2017
Consent dev days
Mohannad hussain dicom and imaging tools
Mohannad hussain community track - siim dataset & dico mweb proxy
Transforming other content (grahame)
Structure definition 101 (ewout)
Quality improvement dev days-2017
Furore devdays 2017- oai
Furore devdays 2017 - implementation guides (lloyd)
Connectathon opening 2017
20171127 rene spronk_messaging_the_unloved_paradigm
Opening student track
Furore devdays 2017- continua implementing fhir
Fhir dev days_advanced_fhir_terminology_services
Distributing cds dev days-2017

Recently uploaded (20)

PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Lesson notes of climatology university.
PDF
Classroom Observation Tools for Teachers
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
Institutional Correction lecture only . . .
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Computing-Curriculum for Schools in Ghana
PPTX
Pharma ospi slides which help in ospi learning
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
Final Presentation General Medicine 03-08-2024.pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPH.pptx obstetrics and gynecology in nursing
GDM (1) (1).pptx small presentation for students
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Lesson notes of climatology university.
Classroom Observation Tools for Teachers
2.FourierTransform-ShortQuestionswithAnswers.pdf
Institutional Correction lecture only . . .
Anesthesia in Laparoscopic Surgery in India
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Computing-Curriculum for Schools in Ghana
Pharma ospi slides which help in ospi learning
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
VCE English Exam - Section C Student Revision Booklet
TR - Agricultural Crops Production NC III.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
102 student loan defaulters named and shamed – Is someone you know on the list?

Furore devdays2017 tdd-2-advanced

  • 1. FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7. Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com Test Driven Development II - Advanced Richard Ettema, AEGIS.net, Inc.
  • 2. Presented by • Name: Richard Ettema • Position: • Lead Consultant, AEGIS.net, Inc. • FHIR® Certified Implementer • Background: • 34+ years IT industry experience • 14+ years leading HIT development/implementation efforts • 4+ years contributing to the HL7® FHIR® specification (focus on testing) • Sr. Architect / Lead Developer for the Touchstone Project • Author of the AEGIS WildFHIR public test server and client
  • 3. Test Driven Development with FHIR Intro Session Review • To ensure interoperability between applications claiming conformance to the specification, a testing framework has been established within the FHIR specification itself https://www.hl7.org/fhir/STU3/testing.html • This framework defines a Test Engine for processing a TestScript resource as a natural language, computable format of a test case • The TestScript resource is an implementation-agnostic description of tests that allows test engines to evaluate if a FHIR implementation conforms with the FHIR specification https://www.hl7.org/fhir/STU3/testscript.html
  • 4. • Testing workflow example • How can we trust that the correction is being tested in the same way? Can we trust either test outcome? Known data facilitates known, expected outcomes We will review and examine how to ensure “Reliable and Repeatable Testing” during the Hands-on Exercises using a “Two Users, Same Data” scenario Test Passes Run Test Again Developer Correction Test FailsRun Test Reliable and Repeatable Testing
  • 5. Identifying Your Testing Criteria; a.k.a. Asserts • Testing simple values • Is this the patient I expected? • Is this the operation response I expected? • Did I get multiple matches when I expected one? • Testing specification conformance • Is this element required? • Is this code value correct? • Testing conditionality or constraints • Can this element be expressed more than one way and still be compliant? • Is this element is only required when another element is present?
  • 6. Asserts can perform… • simple operations • standard assert operators are constrained to the following: equals | notEquals | in | notIn | greaterThan | lessThan | empty | notEmpty | contains | notContains | eval • specification allows for use of XPath or JSONPath expressions • complex evaluations • specification allows for rules to be defined within the assert • specification allows for use of FHIRPath* expressions *FHIRPath is supported within the TestScript resource and by the Touchstone test engine, but will not be a focus of this session. To learn more about FHIRPath, see http://hl7.org/fhirpath
  • 7. Complex Asserts • Are used when testing conditionality, constraints or simplifying an existing test construct • Support the use of FHIRPath • FHIRPath has expressions, functions, operations • Far more functionality than found in the simple assert operators • Built-in expressions such as dateTime and quantity • Expressions can contain operators • Functions like isDistinct, count, subsetOf, supersetOf • Support Rules and Rulesets (high level language scripted logic) • Touchstone Rules Engine supports Groovy, Schematron and XSLT
  • 8. Complex Asserts - FHIRPath Example • FHIRPath provides a syntax neutral way to access the contents of a resource and can simplify assert logic constructs Assert condition: “Confirm that the searchset Bundle total number of entries is at least one (1).” • Let’s compare XPath and JSONPath to FHIRPath…
  • 9. Complex Asserts - FHIRPath Example Comparison with XPath and JSONPath • XPath assert <assert> <operation value=“greaterThan” /> <path value=“/Bundle/total” /> <value value=“0” /> </assert> • JSONPath assert <assert> <operation value=“greaterThan” /> <path value=“.total” /> <value value=“0” /> </assert> • FHIRPath assert (equivalent logic) <assert> <expression value=“Bundle.total.toInteger() &gt; 0” /> </assert> • FHIRPath assert (alternative logic) <assert> <expression value=“Bundle.entry.count() &gt; 0” /> </assert>
  • 10. Complex Asserts - Rules and Rulesets • The TestScript resource allows the use of Rules and Rulesets within the assert • Rules are called during TestScript execution • In Touchstone, the Rules are hosted within the Test Definition folders • Rules may be viewed and will be displayed in Test Results if selected • Rulesets are simply collections of one or more Rules • Allows for the definition of a group of Rules to be referenced within the TestScript in an efficient manner We will review and examine Rules and Rulesets during the Hands-on Exercises
  • 11. FHIR Client or Peer-to-Peer Testing • TestScripts in Touchstone can be either Server-only, Client (Peer-to- Peer), or Multi-actor • Server-only: Touchstone initiates requests to the destination FHIR System and evaluates the response • Client (Peer-to-Peer): Touchstone waits for a request from the origin FHIR System to be received, evaluates the request, sends to the destination FHIR System, and evaluates the response • Multi-actor: Touchstone may act as the initiating system along with other FHIR Test Systems acting as either a Client or Server
  • 12. Client (Peer-to-Peer) Testing - Test Setup • Select a Client TestScript from the Test Definitions list • Select and fill in any test data necessary for test execution • Origin Test System (Client) • Destination Test System (Server) • (Dynamic) Variables
  • 13. Client (Peer-to-Peer) Testing - Test Execution
  • 14. Client (Peer-to-Peer) Testing - TestScript Execution We will review and examine Client Testing during the Hands-on Exercises
  • 15. Captured Message Exchanges • The Exchanges dashboard in Touchstone allows users to view all captured request and response messages • Touchstone will match an exchange with a test execution using these checks: • If your test server is already defined within Touchstone and is publicly accessible, the message can be matched by originating IP address • If that is not possible, the system attempts to use USER_KEY and ORG_KEY • Else, the system cannot match the message to a test execution
  • 16. USER_KEY and ORG_KEY • USER_KEY and ORG_KEY are special placeholders • They can be sent by the client system as an HTTP request header or within the request payload • They identify the client system when the machine name or IP address would not
  • 17. Introducing the Touchstone APIs • Test executions can be launched and monitored via remote RESTful web services • Provides the means to integrate Touchstone into your organization’s test executions for: • Internal automated regressions tests • Continuous Integration build processes • Documentation and example messages are available • Supported formats – JSON and XML
  • 18. Touchstone API Capabilities • The Touchstone APIs allow for many of the same non-administrative functions as the User Interface • Test executions launched on behalf of a remote test user via Touchstone API will be visible to all members of your organization on the Touchstone UI • Any member of your organization can log in to the Touchstone UI and investigate test failures if needed
  • 19. Touchstone API Services POST authenticate  Authenticate with Touchstone; return new API session key POST testExecution  Launch a new test execution for an existing Test Setup GET testExecution  Return the status of a know test execution GET testExecDetail  Return summary status of all test execution TestScripts GET scriptExecDetail  Return test execution single TestScript details GET testReport  Same as GET scriptExecDetail except returns FHIR TestReport
  • 20. Touchstone API - Jenkins CI Server Integration Example • The Touchstone User Guide documents a Jenkins CI Server Integration Example • https://touchstone.aegis.net/touchstone/TouchstoneUserGuide, section ‘Touchstone API – Jenkins Integration Example’ • Illustrates the use of the Jenkins Groovy Plugin • Builds on the example code from the previous ‘Touchstone API – Definition’ section Due to not having a publicly available Jenkins CI Server at this event, there is no corresponding Hands-on Exercises for this topic.
  • 21. Conformance Testing • Conformance Testing validates a system against known standards • FHIR Specification (including Implementation Guides) • Version support (forward/backward compatibility) • Continuous Conformance Testing shows that an organization is currently conformant, but also committed to remain conformant • Future development minded - interoperability needs to be addressed on a continuous basis • Development Aid - developers can integrate FHIR conformance testing into their build cycle to avoid costly conformance code rewrites later • Regression testing - validate that changes and enhancements are also conformant
  • 23. Hands on Exercises • Reliable and Repeatable Testing - Two Users, Same Data • Complex Asserts • FHIRPath comparison to XPath and JSONPath • Rules and Rulesets • Advanced TestScripts • FHIR Client / Peer-to-Peer • Conformance Analytics Dashboard • Connectathon Test Track • We will continue our review of one of the test tracks for the next HL7 FHIR Connectathon 17 event and the development of TestScripts
  • 25. FHIR® is the registered trademark of HL7 and is used with the permission of HL7. The Flame Design mark is the registered trademark of HL7 and is used with the permission of HL7. Amsterdam, 15-17 November | @fhir_furore | #fhirdevdays17 | www.fhirdevdays.com Thank you!