View allAll Photos Tagged JUnit
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
*问题起源*: 在执行junit测试的时候,log失效,CUT(Class Under Test被测试类)没有按照log4j.properties
的指示进行logging。
*问题发生的环境*:
Eclipse 3.1.1
Maven2.x,
Maven插件 Maven 2.0 integration 0.0.9
使用标准maven web app layout: "-DarchetypeArtifactId=maven-archetype-webapp"
*分析过程*:
1. 开始以为写错了logging的配置,查了commons-logging的资料,并无错误,log4j.properties将作为缺省配置。
2. 由此怀疑log4j.properties不在测试运行时的classpath里。在CUT里写main执行方法,包括一句非常简单的
logger.debug("debugging!"); 运行主程序发现logging一切很正常。很显然,在eclipse环境下直接运行和junit的test
runner 的classpath是不一致的。
3. 打开Eclipse的run选项, RunàRun…,选择JUnit/${CUT}Test/Classpath, 察看junit的运行参数
classpath,发现其中并没有包括maven配置中以及eclipse项目中的classpath,如下图:
4. 问题就出在这里了。 在此处添加log4j.propertie所在的folder,例如
"\${projectName}\src\main\resource\",如下图所示:
运行testrunner,logging正常了。
*后续工作*:
上述的修改只能算是一个workaround,每一次运行都必须配置相应的classpath,很不方便。有没有其他更好的办法?
查google "classpath testrunner junit eclipse",有人已经报告了这个问题(不,这是另外一个cross
project引用的问题)
**
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Junito, Jayne Abella, Rico Lucena, Edwin, Haide Acuña, Marlon Melgazo, Leo Lastimosa and Eric Lapinid
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
It's working!! The bally thing is working!! Bamboo continuous integration server now monitors my Subversion repository for changes, runs the ant build script, runs Junit tests and records the results for me!!
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Join us at Free 1 hour #webinar on 25th Feb 2015 at 7 p PST, 10p EST, 8:30 a IST (26th Feb) on “Advanced #SeleniumTraining”. It’s a great chance to learn how to build a highly advanced keyword driven #automationframework using #Seleniumwebdriver with #CoreJava.
Note – This is not a Beginner Level Course Training
Participants are expected to have good knowledge on Selenium IDE, Identifying elements using #xPath #Firebug and #CSS, and Core Java and #JUnit fundamentals.
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Renca /08-08-22
Alcalde Castro junito a Diego Villanueva Agrupación de Músicos y Artistas Semillas Andinas
Foto: Victor Tabja
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )
Devoxx 2017 - Testing Java Microservices
With traditional software unit tests, there's never a guarantee that an application will actually function correctly in the production environment. And when you add microservices, remote resources that are accessible over a network, into the mix, testing is more tricky. To make things even harder, microservices typically need to collaborate with additional network-based microservices, making testing even more challenging.
In this session you'll learn test strategies that solve the most common issues you are likely to encounter when writing tests for microservices architecture. Also you'll learn how tools such as Arquillian, JUnit, Docker or techniques suck as service virtualization or consumer-driven testing can help you on this task.
( Devoxx 2017
Tous les slides sont proprietes de leurs auteurs.
All slides are properties of their authors. )