-
Trivadis Developer Blog
This is the publication playground for these guys from OIO Trivadis, the Trivadis Group`s Java experts.
Tag cloud
Agile Methods and development Atlassian Tools Build, config and deploy Did you know? Eclipse Universe Groovy and Grails Java and Quality Java Basics Java EE Java modularization Java Persistence Java Runtimes - VM, Appserver & Cloud Java Web Frameworks MDSD Open Source BI Other languages for the Java VM Politics Security SOA / Webservices Spring Universe Web as a Platform XML Universe
Tag Archives: parameterized tests
Parametrisierte Tests in JUnit 5
Parametrisierte Tests in JUnit 5 ermöglichen es uns, einen Test mehrmals mit verschiedenen Argumenten auszuführen. Dafür benutzt man die Annotation @ParameterizedTest an einer Testmethode anstelle der @Test Annotation. Außerdem ist noch mindestens eine Datenquelle zu definieren, die die Argumente für … Continue reading
Use null values in JUnit 5 parameterized tests
JUnit 5 allows you to parameterize your tests so that the same test case is executed repeatedly with a varying set of test parameters. This is similar to the parameterized test feature of JUnit 4, except now these tests are … Continue reading