IntelliJ IDEA – the IDE for Professional Development in Java and Kotlin
We hosted the second edition of ‘IntelliJ IDEA Conf’, a free and virtual conference on the 29-30th of September, 2022, on IntelliJ IDEA’s YouTube Channel. Our intention with this event was to celebrate the developer community and its desire to learn and improve everyday. I hope we succeeded…
Our intention with IntelliJ IDEA Conf is to celebrate the developer community and its desire to learn and improve everyday. We invite you to join us for this free online conference and learn from industry leaders and experts on September 29–30, 2022. Learn about a variety of topics, like Core Java,…
In this tutorial we're going to look at features of JUnit 5 that can make it easier for us to write effective and readable automated tests. All code in this tutorial can be found in this GitHub repository. This blog post covers the same material as the video. This provides an easy way for people to…
This post will help you take your project from previous versions of JUnit to JUnit5. IntelliJ IDEA has a number of tools to help facilitate the migration which you can perform in a series of steps that we talk about here. This blog post covers the same material as the video. This provides an easy w…
IntelliJ IDEA provides support for the upcoming JUnit 5 release. JUnit has pretty much been the standard for Java unit testing for years, and the latest version brings the library right up to date, making use of Java 8 features and bringing in ways of testing that are familiar if you've been using o…
The just-out IntelliJ IDEA 2017.1.2 update brings important bugfixes and overall improvements. Among notable changes: JUnit 5 M4 support (incl. running parametrized tests) Support for the new Typescript 2.3 language features (e.g. for await) An important fix for the freeze while editing G…
Great news! A fresh update for IntelliJ IDEA 2016.3 is coming soon. Today we've published its RC build. In addition to bugfixes, this build updates JUnit 5 support to M3. Note that if you plan to run JUnit 5 M2, you have to either use an earlier version of IntelliJ IDEA, or manually include JUnit…
One of the new features in IntelliJ IDEA 2016.2 is support for the new JUnit 5 testing framework. Almost all Java developers will have used JUnit at some point, so it's pretty exciting to find the newest version has evolved with the times and provides a number of new features, some of which may be …
Today’s Java landscape is growing larger and faster than ever, with over 30,000 new Java projects created on GitHub each month. Here on the Java Annotated Monthly we leave no stone unturned to bring you the most important news and developments around the world. All the news, fit to println(&ld…
IntelliJ IDEA 11.1 introduces a new way of browsing the gathered coverage information through a dedicated Coverage View. This view aggregates the coverage details over a configured scope in one place. It provides ability to sort data by coverage percentage, what can be used for detection of code wh…
Sometimes you have an abstract test class with test methods where the inheritors set up different environment. As it is impossible to run an abstract class you had to enumerate inheritors manually, choose corresponding methods and run these methods one by one. Now (since IntelliJ IDEA 11.1) it is …