SlideShare a Scribd company logo
1 of 81
Download to read offline
kgolev.com@kotseto
JUnit 5
Kostadin Golev
CTO @ Rewards Labs
The Next Generation
kgolev.com@kotseto
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
kgolev.com@kotseto
Issues with JUnit 4
kgolev.com@kotseto
kgolev.com@kotseto
How bad?
Let’s rename some private variables to find out!
kgolev.com@kotseto
kgolev.com@kotseto
4.12-beta-1:
org.junit.ComparisonFailure:
expected: null<null> but was: null<null>
4.11:
org.junit.ComparisonFailure:
expected:<[1]L> but was:<[2]L>
assertEquals(1, 2)
kgolev.com@kotseto
Extension mechanism
Runner
@RunWith(SpringJUnit4ClassRunner.class)
Rule
@Rule ExpectedException thrown = none()
kgolev.com@kotseto
Powerful Composable
Runner Rule
kgolev.com@kotseto
Extension mechanism
Powerful Composable?
Runner Rule
kgolev.com@kotseto
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
Will this work?
kgolev.com@kotseto
There is no single JUnit 5
(JAR)
kgolev.com@kotseto
Not one big fat jar
We have more then ten now, in three groups
kgolev.com@kotseto
JUnit Platform
+
JUnit Jupiter
+
JUnit Vintage
JUnit 5
kgolev.com@kotseto
JUnit Platform
kgolev.com@kotseto
JUnit Jupiter
JUnit Vintage
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
@Test
void exception() {
RuntimeException thrown =
assertThrows(RuntimeException.class, () ->
library.throwRuntimeException("message")
);
assertEquals("message", thrown.getMessage());
}
kgolev.com@kotseto
kgolev.com@kotseto
What about Runners and
Rules?
kgolev.com@kotseto
We wrote some tests!
How do we run them?
kgolev.com@kotseto
Use JUnit 4
@RunWith(JUnitPlatform.class) provides limited JUnit 5
functionality
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
Some History
Or how JUnit 5 team discovered they were building a
platform
kgolev.com@kotseto
It started as a big fat jar
Then everything got split in small, focused modules
kgolev.com@kotseto
Launcher
<<interface>>
Engine
Engine Impl
Jupiter API
implements
JUnit Platform
JUnit Jupiter
kgolev.com@kotseto
Launcher
<<interface>>
Engine
JUnit Platform
kgolev.com@kotseto
<<interface>>
Engine
Engine Implementation
implements
JUnit Platform
JUnit Jupiter
kgolev.com@kotseto
Jupiter API
JUnit Jupiter
@Test
@BeforeEach
assertEquals()
…
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3&4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
You can still run your
JUnit 3&4 tests
But it will not be JUnit 3&4 running them
kgolev.com@kotseto
Launcher
<<interface>>
Engine
Vintage Engine Impl
JUnit 3&4 API
implements
JUnit Platform
JUnit Vintage
kgolev.com@kotseto
JUnit Platform
JUnit Jupiter JUnit Vintage
JUnit5 tests JUnit4 tests
kgolev.com@kotseto
Platform for the JVM
Developers already started implementing their own
engines, reusing JUnit5 tool integration
kgolev.com@kotseto
Not only for Java
Test Engine implementations exist for
Scala, Kotlin and Groovy
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
assertAll(…)
kgolev.com@kotseto
assertEquals(1, 2);
assertEquals("String", "Another String");
org.opentest4j.AssertionFailedError:
Expected :1
Actual :2
kgolev.com@kotseto
assertAll(
() -> assertEquals(1, 2),
() -> assertEquals("String", “Another String")
)
org.opentest4j.MultipleFailuresError: Multiple Failures (2 failures)
expected: <1> but was: <2>
expected: <String> but was: <Another String>
kgolev.com@kotseto
What about Runners and
Rules (again)?
JUnit5 Extension model
kgolev.com@kotseto
@ExtendWith
kgolev.com@kotseto
kgolev.com@kotseto
Composable & Powerful
Use as many as you want
whenever you want them
kgolev.com@kotseto
@ExtendWith(SpringExtension.class)
@ExtendWith(MockitoExtension.class)
public class SpringTest {
@Autowired
SampleData sampleData;
@Mock
Dependency mockedDepedency;
kgolev.com@kotseto
public class MockitoExtension implements
TestInstancePostProcessor {
@Override
public void postProcessTestInstance(
Object testInstance,
ExtensionContext context) {
MockitoAnnotations.initMocks(testInstance);
}
}
kgolev.com@kotseto
Not many extensions yet
a few unofficial ones
Spring and Mockito support in next releases
kgolev.com@kotseto
@Nested
@DisplayName
kgolev.com@kotseto
public class Library {
private Books books;
public Library(Books books) {
this.books = books;
}
public void addBook(Book book) {
// do something with books
}
}
kgolev.com@kotseto
@Test
void whenBookExistsThenIncrementAmount() {}
@Test
void whenBookExistsThenCheckAmountMoreThenN() {}
@Test
void whenBookDoesNotExistThenCreateBook() {}
@Test
void whenBookDoesNotExistThenSendNewBookNotification() {}
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
Tests are often a tree,
not a list
kgolev.com@kotseto
kgolev.com@kotseto
@DisplayName("Book is added to library")
class BookAddedTest {


@DisplayName("when book exists")
@Nested
class whenBookExists {
@DisplayName("amount++")
@Test
void incrementAmount() {}
@DisplayName("check amount > limit")
@Test
void checkAmountMoreThenLimit() {}
}
. . .
}
kgolev.com@kotseto
kgolev.com@kotseto
@ParameterizedTest
kgolev.com@kotseto
@Test
void strIsLessThenTenChar() {
int value = "str".length();
assertTrue(value < 10);
}
@Test
void StringIsLessThenTenChar() {
int value = "String".length();
assertTrue(value < 10);
}
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
kgolev.com@kotseto
@ValueSource(strings = {“str”, “String”})
@ValueSource(ints = {1, 3, 7, 9})
@EnumSource(SomeEnum.class)
@CsvSource({"1, 1", "2, 4", "4, 16”})
@CsvFileSource(resources=“testData.csv”)
kgolev.com@kotseto
@MethodSource(names=“stringAndIntProvider")
static Stream<Arguments> stringAndIntProvider() {
return Stream.of(
ObjectArrayArguments.create("foo", 3),
ObjectArrayArguments.create("foobar", 6)
);
}
kgolev.com@kotseto
kgolev.com@kotseto
Why JUnit 5?
Where Is It?
Writing Tests
Platform For The JVM
Running Along JUnit 3 & 4
Important New Features
IDE & Tool Support
kgolev.com@kotseto
Supports latest release candidate
Support in Oxygen 4.7 BETA
Official support target 4.7.1

ETA: September 2017
kgolev.com@kotseto
Surefire provider
Plugin
No native support (yet)
kgolev.com@kotseto
6 September 2017
kgolev.com@kotseto
junit.org/junit5
kgolev.com@kotseto
Questions?
@kotseto
kgolev.com/talks/junit5
JUnit 5 - The Next Generation
JUnit 5 - The Next Generation

More Related Content

What's hot (20)

Junit4&testng presentation
Junit4&testng presentationJunit4&testng presentation
Junit4&testng presentation
 
Google mock for dummies
Google mock for dummiesGoogle mock for dummies
Google mock for dummies
 
What is JUnit? | Edureka
What is JUnit? | EdurekaWhat is JUnit? | Edureka
What is JUnit? | Edureka
 
JUnit 5
JUnit 5JUnit 5
JUnit 5
 
RPG Program for Unit Testing RPG
RPG Program for Unit Testing RPG RPG Program for Unit Testing RPG
RPG Program for Unit Testing RPG
 
Test ng
Test ngTest ng
Test ng
 
Unit Testing RPG with JUnit
Unit Testing RPG with JUnitUnit Testing RPG with JUnit
Unit Testing RPG with JUnit
 
Test code that will not slow you down
Test code that will not slow you downTest code that will not slow you down
Test code that will not slow you down
 
Junit and testNG
Junit and testNGJunit and testNG
Junit and testNG
 
Unit test
Unit testUnit test
Unit test
 
Junit
JunitJunit
Junit
 
C++ Unit Test with Google Testing Framework
C++ Unit Test with Google Testing FrameworkC++ Unit Test with Google Testing Framework
C++ Unit Test with Google Testing Framework
 
Testing In Java
Testing In JavaTesting In Java
Testing In Java
 
Test ng for testers
Test ng for testersTest ng for testers
Test ng for testers
 
Testing and Mocking Object - The Art of Mocking.
Testing and Mocking Object - The Art of Mocking.Testing and Mocking Object - The Art of Mocking.
Testing and Mocking Object - The Art of Mocking.
 
JUnit Presentation
JUnit PresentationJUnit Presentation
JUnit Presentation
 
Test NG Framework Complete Walk Through
Test NG Framework Complete Walk ThroughTest NG Framework Complete Walk Through
Test NG Framework Complete Walk Through
 
JUNit Presentation
JUNit PresentationJUNit Presentation
JUNit Presentation
 
TestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the warTestNG vs JUnit: cease fire or the end of the war
TestNG vs JUnit: cease fire or the end of the war
 
TestNg_Overview_Config
TestNg_Overview_ConfigTestNg_Overview_Config
TestNg_Overview_Config
 

Similar to JUnit 5 - The Next Generation

JUnit5 and TestContainers
JUnit5 and TestContainersJUnit5 and TestContainers
JUnit5 and TestContainersSunghyouk Bae
 
Desenvolva plugins para o compilador do Java 8
Desenvolva plugins para o compilador do Java 8Desenvolva plugins para o compilador do Java 8
Desenvolva plugins para o compilador do Java 8Marcelo de Castro
 
What to expect from Java 9
What to expect from Java 9What to expect from Java 9
What to expect from Java 9Ivan Krylov
 
Lightweight Java EE with MicroProfile
Lightweight Java EE with MicroProfileLightweight Java EE with MicroProfile
Lightweight Java EE with MicroProfileJosh Juneau
 
Rise of the Machines - Automate your Development
Rise of the Machines - Automate your DevelopmentRise of the Machines - Automate your Development
Rise of the Machines - Automate your DevelopmentSven Peters
 
Developing Selenium tests with JUnit 5
Developing Selenium tests with JUnit 5Developing Selenium tests with JUnit 5
Developing Selenium tests with JUnit 5Boni García
 
Unit testing with Spock Framework
Unit testing with Spock FrameworkUnit testing with Spock Framework
Unit testing with Spock FrameworkEugene Dvorkin
 
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...Paul King
 
Using java8 for unit testing while being backward compatible
Using java8 for unit testing while being backward compatibleUsing java8 for unit testing while being backward compatible
Using java8 for unit testing while being backward compatibleNikola Petrov
 
Verify Your Kubernetes Clusters with Upstream e2e tests
Verify Your Kubernetes Clusters with Upstream e2e testsVerify Your Kubernetes Clusters with Upstream e2e tests
Verify Your Kubernetes Clusters with Upstream e2e testsKen'ichi Ohmichi
 
Interactive Java Support to your tool -- The JShell API and Architecture
Interactive Java Support to your tool -- The JShell API and ArchitectureInteractive Java Support to your tool -- The JShell API and Architecture
Interactive Java Support to your tool -- The JShell API and ArchitectureJavaDayUA
 
Boost up your productivity with Kotlin - Liferay Symposium France 2018
Boost up your productivity with Kotlin - Liferay Symposium France 2018Boost up your productivity with Kotlin - Liferay Symposium France 2018
Boost up your productivity with Kotlin - Liferay Symposium France 2018Louis-Guillaume Durand
 
Make Your Testing Groovy
Make Your Testing GroovyMake Your Testing Groovy
Make Your Testing GroovyPaul King
 
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Testes? Mas isso não aumenta o tempo de projecto? Não quero...Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Testes? Mas isso não aumenta o tempo de projecto? Não quero...Comunidade NetPonto
 
Mock cli with Python unittest
Mock cli with Python unittestMock cli with Python unittest
Mock cli with Python unittestSong Jin
 

Similar to JUnit 5 - The Next Generation (20)

Test Dependencies and the Future of Build Acceleration
Test Dependencies and the Future of Build AccelerationTest Dependencies and the Future of Build Acceleration
Test Dependencies and the Future of Build Acceleration
 
JUnit5 and TestContainers
JUnit5 and TestContainersJUnit5 and TestContainers
JUnit5 and TestContainers
 
Advanced Java Testing
Advanced Java TestingAdvanced Java Testing
Advanced Java Testing
 
Desenvolva plugins para o compilador do Java 8
Desenvolva plugins para o compilador do Java 8Desenvolva plugins para o compilador do Java 8
Desenvolva plugins para o compilador do Java 8
 
What to expect from Java 9
What to expect from Java 9What to expect from Java 9
What to expect from Java 9
 
Lightweight Java EE with MicroProfile
Lightweight Java EE with MicroProfileLightweight Java EE with MicroProfile
Lightweight Java EE with MicroProfile
 
What's New in Groovy 1.6?
What's New in Groovy 1.6?What's New in Groovy 1.6?
What's New in Groovy 1.6?
 
Junit_.pptx
Junit_.pptxJunit_.pptx
Junit_.pptx
 
Rise of the Machines - Automate your Development
Rise of the Machines - Automate your DevelopmentRise of the Machines - Automate your Development
Rise of the Machines - Automate your Development
 
Junit5 brujug
Junit5 brujugJunit5 brujug
Junit5 brujug
 
Developing Selenium tests with JUnit 5
Developing Selenium tests with JUnit 5Developing Selenium tests with JUnit 5
Developing Selenium tests with JUnit 5
 
Unit testing with Spock Framework
Unit testing with Spock FrameworkUnit testing with Spock Framework
Unit testing with Spock Framework
 
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...
Industrial Strength Groovy - Tools for the Professional Groovy Developer: Pau...
 
Using java8 for unit testing while being backward compatible
Using java8 for unit testing while being backward compatibleUsing java8 for unit testing while being backward compatible
Using java8 for unit testing while being backward compatible
 
Verify Your Kubernetes Clusters with Upstream e2e tests
Verify Your Kubernetes Clusters with Upstream e2e testsVerify Your Kubernetes Clusters with Upstream e2e tests
Verify Your Kubernetes Clusters with Upstream e2e tests
 
Interactive Java Support to your tool -- The JShell API and Architecture
Interactive Java Support to your tool -- The JShell API and ArchitectureInteractive Java Support to your tool -- The JShell API and Architecture
Interactive Java Support to your tool -- The JShell API and Architecture
 
Boost up your productivity with Kotlin - Liferay Symposium France 2018
Boost up your productivity with Kotlin - Liferay Symposium France 2018Boost up your productivity with Kotlin - Liferay Symposium France 2018
Boost up your productivity with Kotlin - Liferay Symposium France 2018
 
Make Your Testing Groovy
Make Your Testing GroovyMake Your Testing Groovy
Make Your Testing Groovy
 
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Testes? Mas isso não aumenta o tempo de projecto? Não quero...Testes? Mas isso não aumenta o tempo de projecto? Não quero...
Testes? Mas isso não aumenta o tempo de projecto? Não quero...
 
Mock cli with Python unittest
Mock cli with Python unittestMock cli with Python unittest
Mock cli with Python unittest
 

Recently uploaded

Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durbanmasabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationShrmpro
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...Nitya salvi
 

Recently uploaded (20)

Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
SHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions PresentationSHRMPro HRMS Software Solutions Presentation
SHRMPro HRMS Software Solutions Presentation
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 

JUnit 5 - The Next Generation