SlideShare a Scribd company logo
[12th July 2020]: [MUnit Testing made easier in Mule]
FARIDABAD India, Mulesoft Group
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc.
Agenda
2
• Introduction
• MuleSoft for Beginners
• MUnit Testing made easier in Mule
• Fun Quiz ( Win certification voucher )
• Networking
• Next Event Announcement
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc.
Organizers
3
Welcome everyone! Thanks for joining us!
All contents © MuleSoft Inc.
Surprises!
4
• Participate in an online
Quiz to win the
instructor-led training
classes and certification
exam vouchers. (3
Winners!)
• Be geared up for the
quiz sessions at the end

Start your Mulesoft Journey
Mulesoft for beginners
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc. 6
• https://training.mulesoft.com/
• https://www.youtube.com/channel/UCHQ5feaAtOCEtis453_RYAg
(Tech Lightning) YouTube Channel
• https://www.youtube.com/c/SFDCPanther YouTubeChannel
• https://docs.mulesoft.com/general/
Resources
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc.
Speaker
7#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
What’s new in MUnit?
Easier MUnit testing in
Mule
All contents © MuleSoft Inc.
What will we be talking about?
9#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc. 10
• MUnit is the Mule application testing framework that enables developers to create,
design, and run unit and integration tests on Mule applications created within Anypoint
Studio.
• It natively supports unit and integration testing on APIs and Mule apps in local and
CI/CD environments (via Maven).
Note: If this is your first time learning about MUnit, check out our tutorial on how to create your first MUnit
test in Anypoint Studio.
• Further we will learn how the MUnit test recorder works and how it can simplify the
testing process.
• The test recorder allows us to create tests for our application without the need of
writing any code, empowering us to build more robust applications and ensure their
quality to meet any test coverage requirements.
What is MUnit and Test Recorder?
All contents © MuleSoft Inc.
What is MUnit?
11
MUnit is divided into two
main sub-modules, one is
called MUnit and the other
MUnit Tools. Additionally,
there are Utilities available
for import such as a
Database Server, FTP
Server, or a Run and Wait
Scope. Here is an overview
of some of the different
MUnit features that you
can implement into your
unit testing.
All contents © MuleSoft Inc. 12
How do you use MUnit?
• Use MUnit to build
test flows (technically
called test suites in
the industry) focused
on executing Mule
flows. Each test is
essentially a Mule
flow.
• Use components from
MUnit and generic
Mule components to
build test flows.
• Test flows execute in
a Mule runtime and
report results.
1
2
3
All contents © MuleSoft Inc. 13
• A test flow is broken down into three sections:
1. Execution,
2. Behavior and
3. Validation.
• The behavior scope sets all the preconditions before executing the
test logic. The execution scope contains the testing logic which will
wait for all processes to finish before executing the next scope. The
validation scope contains all the validations for the results of the
execution scope.
How do you use MUnit?
All contents © MuleSoft Inc. 14
• Test: Creates a new test “flow” broken down into three sections: Execution, Behavior, and Validation. The
behavior scope sets all the preconditions before executing the test logic. The execution scope contains the
testing logic which will wait for all processes to finish before executing the next scope. The validation scope
contains all the validations for the results of the execution scope.
• Set Event: Allows you to define a Mule Event. Usually used at the beginning of an MUnit test to define the
first message to send to the flow being tested.
• Set null payload: Defines a null payload to test how your flow will handle a null value.
• After Suite: Runs after executing all of the MUnit tests and runs just once. For instance, let’s suppose you
have an MUnit Test Suite File with four tests. The code inside an MUnit After Suite, runs just once, after all
of your tests.
• After Test: Runs after executing an MUnit test. For instance, let’s suppose you have an MUnit Test Suite file
with four tests. The code inside an MUnit After Test runs after each of your four tests; it runs four times.
• Before Suite: Runs before executing all of the MUnit tests and runs just once. For example, suppose you
have an MUnit Test Suite file with four tests. The code inside an MUnit Before Suite runs just once, before all
of your four tests.
• Before Test: Runs before executing an MUnit test. For instance, let’s suppose you have an MUnit Test Suite
file with four tests. The code inside an MUnit Before test runs before each of your four tests; it runs four
times.
MUnit Operations:
All contents © MuleSoft Inc. 15
• Assert That: Allows you to run assertions to validate the state of a Mule event, such as checking to see
if a payload equals a certain value.
• Fail: Useful in validating that a test should fail if that point is reached in the flow. The processor throws
a java.lang.AssertionError.
• Mock When: Use this processor to mock an event, such as sending a mock POST request with a
mocked payload.
• Run Custom: Allows you to assert the Mule event content against a custom assertion.
• Verify Call: Allows you to verify if a processor was called.
• Spy: Allows you to see what happens before and after an event processor is called in your Flow.
Usually, you will tell the Spy processor to run a set of instructions before and after the execution.
MUnit Tools:
All contents © MuleSoft Inc. 16
Head-to-head comparison vs. legacy middleware
All contents © MuleSoft Inc. 17
The pain of testing today
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc. 18
Munit test recorder
Let us quickly go through a tutorial on how to record a test and generate a flow.
https://developer.mulesoft.com/tutorials-and-howtos/quick-start/getting-started-with-
the-munit-test-recorder
All contents © MuleSoft Inc. 19
Generally available from April 30th 2020
• Automate test creation: Capture flow
execution with the new Munit test
recorder to automatically generate
tests.
• Scale with confidence: Leverage
runtime performance improvements for
more efficient code execution.
• Collaborate on API Specs: Pull and
update API specifications within Studio
and merge them back to Design Center.
Anypoint Studio 7.5 and Mule 4.3
#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
All contents © MuleSoft Inc.
Where to go next?
20#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
Q & A
Quiz Time
All contents © MuleSoft Inc.
Take a stand !
23
• Nominate yourself for the
next meetup speaker and
suggest a topic as well.
• Either for our virtual meetup
speaker, or in-person
meetup speaker.
• Surprise swag for upcoming
Speakers.
• Fill this form -
https://bit.ly/speakar
All contents © MuleSoft Inc.
What’s next
24
• Share:
– Tweet/share in LinkedIn , facebook, Instagram with your pictures with the hashtag
#FaridabadMuleMeetup #MuleSoftMeetup
– Also use #BringMuleSoftConnectToFaridabad to reach our wish to MuleSoft 
– Invite your network to join: https://meetups.mulesoft.com/Faridabad/
• Feedback:
– Please fill out the slips with details like are you new to Mule? If so what technology you are
currently working , What makes you to think of adopting MuleSoft and what topic you are
expecting in future Meetups
– Contact MuleSoft at meetup@mulesoft.com for ways to improve the program
– Your Feedback is Food for us. https://bit.ly/f-mf
• Our next meetup:
– Date: TBD
– Location: Faridabad/Virtual
– Topic: TBD
THANK YOU 
#Everyone
for becoming a part of such a great
#community.
Mule Testing in Mulesfoft 4.X

More Related Content

PPT
Error Handling in Mulesoft
PDF
MuleSoft Online MeetUp 03_11_2020
PPTX
Vancouver mulesoft meetup_september_2020
PDF
Hyd virtual meetupslides11jul
PDF
Mule Meetup Hyderabad - Aug 2020
PPTX
Mumbai MuleSoft Meetup 13
PPTX
Ahmadabad mule soft_meetup_11_october_2020_errorhanlingandmonitoringalerts
PPTX
Exception handling in Mule 4 _Virtual mule soft meetup may_2020
Error Handling in Mulesoft
MuleSoft Online MeetUp 03_11_2020
Vancouver mulesoft meetup_september_2020
Hyd virtual meetupslides11jul
Mule Meetup Hyderabad - Aug 2020
Mumbai MuleSoft Meetup 13
Ahmadabad mule soft_meetup_11_october_2020_errorhanlingandmonitoringalerts
Exception handling in Mule 4 _Virtual mule soft meetup may_2020

What's hot (18)

PPTX
Hyd MuleSoft-Meetup-May 29,2021 | Migrating Mule 3 Java related code to Mule 4
PPTX
Warsaw MuleSoft Meetup #6 - CI/CD
PPTX
Online Spanish meetup #1
PPTX
Cómo generar e implementar monitoreo para aplicaciones de Mule
PDF
MuleSoft approach to the integration - Warsaw MuleSoft Meetup
PDF
Special MuleSoft Meetup at London CONNECT
PPTX
MuleSoft CloudHub API Versioning
PPTX
MuleSoft Meetup slides_kualalumpur_19thSept_Undisturbed REST: Achieving Undis...
PPTX
Mulesoft KL Meetup 2
PDF
Manila MuleSoft Meetup - August 2020
PDF
Mulesoft Munit Testing
PPTX
6th Manila MuleSoft Meetup May 2020
PPTX
Warsaw mulesoft meetup #9 mastering integration with salesforce
PPTX
Building APIs with Mule and Spring Boot
PPTX
Ahmadabad mule soft_meetup_6march2021_azure_CICD
PDF
Testing strategies and best practices using MUnit
PDF
CI/CD at Atlassian using Anypoint Platform
PPTX
Demystifying the use of circuit breakers with MuleSoft
Hyd MuleSoft-Meetup-May 29,2021 | Migrating Mule 3 Java related code to Mule 4
Warsaw MuleSoft Meetup #6 - CI/CD
Online Spanish meetup #1
Cómo generar e implementar monitoreo para aplicaciones de Mule
MuleSoft approach to the integration - Warsaw MuleSoft Meetup
Special MuleSoft Meetup at London CONNECT
MuleSoft CloudHub API Versioning
MuleSoft Meetup slides_kualalumpur_19thSept_Undisturbed REST: Achieving Undis...
Mulesoft KL Meetup 2
Manila MuleSoft Meetup - August 2020
Mulesoft Munit Testing
6th Manila MuleSoft Meetup May 2020
Warsaw mulesoft meetup #9 mastering integration with salesforce
Building APIs with Mule and Spring Boot
Ahmadabad mule soft_meetup_6march2021_azure_CICD
Testing strategies and best practices using MUnit
CI/CD at Atlassian using Anypoint Platform
Demystifying the use of circuit breakers with MuleSoft
Ad

Similar to Mule Testing in Mulesfoft 4.X (20)

PPTX
MuleSoft Meetup Charlotte 2019 - Dec 10
PDF
Munit In Mule 4 | Patna MuleSoft Meetup #26
PPTX
Vancouver mulesoft meetup_23-july
PPTX
MuleSoft Meetup Charlotte 2 - 2019
PDF
Engineering Student MuleSoft Meetup#4 - API Testing With MuleSoft
PPTX
Mulesoft meetup slides mumbai_20113019_exception_handling
PDF
Sydney mule soft meetup 30 april 2020
PDF
Stockholm MuleSoft Meetup - Albin Kjellin, 15 Feb 2018
ODP
Mule esb munit
PPTX
Virtual MuleSoft Meetup may_2020
PPTX
Mexico City Online Mulesoft Meetup - Quality Code with MUNIT - May 4, 2020
PPTX
Mule m unit
PDF
MuleSoft MUnit Test Recorder Meetup
PPTX
Mule soft meetup_virtual_ 3_charlotte_07july_2021__final
PPTX
Perth MuleSoft Meetup Feb 2019
PDF
MuleSoft Singapore Meetup May 2020
PPTX
MuleSoft Clustring, Okta, CI/CD Integration with Jenkins
PPTX
Testing in mule
PDF
Mule soft meetup_tw_no1_june17
PDF
Mule soft meetup_th_no1
MuleSoft Meetup Charlotte 2019 - Dec 10
Munit In Mule 4 | Patna MuleSoft Meetup #26
Vancouver mulesoft meetup_23-july
MuleSoft Meetup Charlotte 2 - 2019
Engineering Student MuleSoft Meetup#4 - API Testing With MuleSoft
Mulesoft meetup slides mumbai_20113019_exception_handling
Sydney mule soft meetup 30 april 2020
Stockholm MuleSoft Meetup - Albin Kjellin, 15 Feb 2018
Mule esb munit
Virtual MuleSoft Meetup may_2020
Mexico City Online Mulesoft Meetup - Quality Code with MUNIT - May 4, 2020
Mule m unit
MuleSoft MUnit Test Recorder Meetup
Mule soft meetup_virtual_ 3_charlotte_07july_2021__final
Perth MuleSoft Meetup Feb 2019
MuleSoft Singapore Meetup May 2020
MuleSoft Clustring, Okta, CI/CD Integration with Jenkins
Testing in mule
Mule soft meetup_tw_no1_june17
Mule soft meetup_th_no1
Ad

More from Amit Singh (18)

PPTX
CI CD Daridabad MuleSoft meetup
PPTX
Custom MuleSoft connector using Java SDK
PPTX
External services low code integration
PPTX
Faridabad Mulesoft Meetup Oct 10
PDF
Test setup methods in Salesforce Apex Class
PDF
Apex trigger framework Salesforce #ApexTrigger #Salesforce #SFDCPanther
PDF
Apex trigger handler & helper
PDF
Rollup Summary Trigger for Lookup Relationship Salesforce #Salesforce #ApexTr...
PDF
Duplicate Contact Trigger || Trigger Logic Building || #ApexTrigger #Salesforce
PDF
OAuth 2.0 an Overview
PDF
All About Test Class in #Salesforce
PPTX
Salesforce apex hours PayPal with Salesforce Integration
PPTX
SOQL in salesforce || Salesforce Object Query Language || Salesforce
PPTX
Introduction to apex trigger context variables
PPTX
Introduction to apex triggers
PPTX
Salesforce apex hours azure dev ops
PPTX
Lightning web components
PPTX
Salesforce apex hours azure active directory seamless single sign-on with s...
CI CD Daridabad MuleSoft meetup
Custom MuleSoft connector using Java SDK
External services low code integration
Faridabad Mulesoft Meetup Oct 10
Test setup methods in Salesforce Apex Class
Apex trigger framework Salesforce #ApexTrigger #Salesforce #SFDCPanther
Apex trigger handler & helper
Rollup Summary Trigger for Lookup Relationship Salesforce #Salesforce #ApexTr...
Duplicate Contact Trigger || Trigger Logic Building || #ApexTrigger #Salesforce
OAuth 2.0 an Overview
All About Test Class in #Salesforce
Salesforce apex hours PayPal with Salesforce Integration
SOQL in salesforce || Salesforce Object Query Language || Salesforce
Introduction to apex trigger context variables
Introduction to apex triggers
Salesforce apex hours azure dev ops
Lightning web components
Salesforce apex hours azure active directory seamless single sign-on with s...

Recently uploaded (20)

PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Classroom Observation Tools for Teachers
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Pharma ospi slides which help in ospi learning
PPTX
master seminar digital applications in india
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
RMMM.pdf make it easy to upload and study
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Anesthesia in Laparoscopic Surgery in India
TR - Agricultural Crops Production NC III.pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Classroom Observation Tools for Teachers
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Module 4: Burden of Disease Tutorial Slides S2 2025
Microbial diseases, their pathogenesis and prophylaxis
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPH.pptx obstetrics and gynecology in nursing
STATICS OF THE RIGID BODIES Hibbelers.pdf
Final Presentation General Medicine 03-08-2024.pptx
O5-L3 Freight Transport Ops (International) V1.pdf
VCE English Exam - Section C Student Revision Booklet
01-Introduction-to-Information-Management.pdf
Pharma ospi slides which help in ospi learning
master seminar digital applications in india
Microbial disease of the cardiovascular and lymphatic systems
RMMM.pdf make it easy to upload and study
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf

Mule Testing in Mulesfoft 4.X

  • 1. [12th July 2020]: [MUnit Testing made easier in Mule] FARIDABAD India, Mulesoft Group #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 2. All contents © MuleSoft Inc. Agenda 2 • Introduction • MuleSoft for Beginners • MUnit Testing made easier in Mule • Fun Quiz ( Win certification voucher ) • Networking • Next Event Announcement #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 3. All contents © MuleSoft Inc. Organizers 3 Welcome everyone! Thanks for joining us!
  • 4. All contents © MuleSoft Inc. Surprises! 4 • Participate in an online Quiz to win the instructor-led training classes and certification exam vouchers. (3 Winners!) • Be geared up for the quiz sessions at the end 
  • 5. Start your Mulesoft Journey Mulesoft for beginners #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 6. All contents © MuleSoft Inc. 6 • https://training.mulesoft.com/ • https://www.youtube.com/channel/UCHQ5feaAtOCEtis453_RYAg (Tech Lightning) YouTube Channel • https://www.youtube.com/c/SFDCPanther YouTubeChannel • https://docs.mulesoft.com/general/ Resources #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 7. All contents © MuleSoft Inc. Speaker 7#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 8. What’s new in MUnit? Easier MUnit testing in Mule
  • 9. All contents © MuleSoft Inc. What will we be talking about? 9#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 10. All contents © MuleSoft Inc. 10 • MUnit is the Mule application testing framework that enables developers to create, design, and run unit and integration tests on Mule applications created within Anypoint Studio. • It natively supports unit and integration testing on APIs and Mule apps in local and CI/CD environments (via Maven). Note: If this is your first time learning about MUnit, check out our tutorial on how to create your first MUnit test in Anypoint Studio. • Further we will learn how the MUnit test recorder works and how it can simplify the testing process. • The test recorder allows us to create tests for our application without the need of writing any code, empowering us to build more robust applications and ensure their quality to meet any test coverage requirements. What is MUnit and Test Recorder?
  • 11. All contents © MuleSoft Inc. What is MUnit? 11 MUnit is divided into two main sub-modules, one is called MUnit and the other MUnit Tools. Additionally, there are Utilities available for import such as a Database Server, FTP Server, or a Run and Wait Scope. Here is an overview of some of the different MUnit features that you can implement into your unit testing.
  • 12. All contents © MuleSoft Inc. 12 How do you use MUnit? • Use MUnit to build test flows (technically called test suites in the industry) focused on executing Mule flows. Each test is essentially a Mule flow. • Use components from MUnit and generic Mule components to build test flows. • Test flows execute in a Mule runtime and report results. 1 2 3
  • 13. All contents © MuleSoft Inc. 13 • A test flow is broken down into three sections: 1. Execution, 2. Behavior and 3. Validation. • The behavior scope sets all the preconditions before executing the test logic. The execution scope contains the testing logic which will wait for all processes to finish before executing the next scope. The validation scope contains all the validations for the results of the execution scope. How do you use MUnit?
  • 14. All contents © MuleSoft Inc. 14 • Test: Creates a new test “flow” broken down into three sections: Execution, Behavior, and Validation. The behavior scope sets all the preconditions before executing the test logic. The execution scope contains the testing logic which will wait for all processes to finish before executing the next scope. The validation scope contains all the validations for the results of the execution scope. • Set Event: Allows you to define a Mule Event. Usually used at the beginning of an MUnit test to define the first message to send to the flow being tested. • Set null payload: Defines a null payload to test how your flow will handle a null value. • After Suite: Runs after executing all of the MUnit tests and runs just once. For instance, let’s suppose you have an MUnit Test Suite File with four tests. The code inside an MUnit After Suite, runs just once, after all of your tests. • After Test: Runs after executing an MUnit test. For instance, let’s suppose you have an MUnit Test Suite file with four tests. The code inside an MUnit After Test runs after each of your four tests; it runs four times. • Before Suite: Runs before executing all of the MUnit tests and runs just once. For example, suppose you have an MUnit Test Suite file with four tests. The code inside an MUnit Before Suite runs just once, before all of your four tests. • Before Test: Runs before executing an MUnit test. For instance, let’s suppose you have an MUnit Test Suite file with four tests. The code inside an MUnit Before test runs before each of your four tests; it runs four times. MUnit Operations:
  • 15. All contents © MuleSoft Inc. 15 • Assert That: Allows you to run assertions to validate the state of a Mule event, such as checking to see if a payload equals a certain value. • Fail: Useful in validating that a test should fail if that point is reached in the flow. The processor throws a java.lang.AssertionError. • Mock When: Use this processor to mock an event, such as sending a mock POST request with a mocked payload. • Run Custom: Allows you to assert the Mule event content against a custom assertion. • Verify Call: Allows you to verify if a processor was called. • Spy: Allows you to see what happens before and after an event processor is called in your Flow. Usually, you will tell the Spy processor to run a set of instructions before and after the execution. MUnit Tools:
  • 16. All contents © MuleSoft Inc. 16 Head-to-head comparison vs. legacy middleware
  • 17. All contents © MuleSoft Inc. 17 The pain of testing today #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 18. All contents © MuleSoft Inc. 18 Munit test recorder Let us quickly go through a tutorial on how to record a test and generate a flow. https://developer.mulesoft.com/tutorials-and-howtos/quick-start/getting-started-with- the-munit-test-recorder
  • 19. All contents © MuleSoft Inc. 19 Generally available from April 30th 2020 • Automate test creation: Capture flow execution with the new Munit test recorder to automatically generate tests. • Scale with confidence: Leverage runtime performance improvements for more efficient code execution. • Collaborate on API Specs: Pull and update API specifications within Studio and merge them back to Design Center. Anypoint Studio 7.5 and Mule 4.3 #MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 20. All contents © MuleSoft Inc. Where to go next? 20#MulesoftMeetup #FaridabadMulesoft @FaridaMulesoft @mulesoft
  • 21. Q & A
  • 23. All contents © MuleSoft Inc. Take a stand ! 23 • Nominate yourself for the next meetup speaker and suggest a topic as well. • Either for our virtual meetup speaker, or in-person meetup speaker. • Surprise swag for upcoming Speakers. • Fill this form - https://bit.ly/speakar
  • 24. All contents © MuleSoft Inc. What’s next 24 • Share: – Tweet/share in LinkedIn , facebook, Instagram with your pictures with the hashtag #FaridabadMuleMeetup #MuleSoftMeetup – Also use #BringMuleSoftConnectToFaridabad to reach our wish to MuleSoft  – Invite your network to join: https://meetups.mulesoft.com/Faridabad/ • Feedback: – Please fill out the slips with details like are you new to Mule? If so what technology you are currently working , What makes you to think of adopting MuleSoft and what topic you are expecting in future Meetups – Contact MuleSoft at meetup@mulesoft.com for ways to improve the program – Your Feedback is Food for us. https://bit.ly/f-mf • Our next meetup: – Date: TBD – Location: Faridabad/Virtual – Topic: TBD
  • 25. THANK YOU  #Everyone for becoming a part of such a great #community.