IntelliJ IDEA – the IDE for Professional Development in Java and Kotlin
QA and test engineering are essential parts of modern software development. At JetBrains, we believe using the right tool matters for every job. Creating a separate tool for automated test development was a natural step for us, as it allows us to cover the needs of multi-role software development te…
Register now and join us for our next IntelliJ IDEA Live Stream of Testcontainers: From Zero to Hero. In this live stream, Marco Behler, Developer Advocate @JetBrains, will help you get started with Testcontainers for your integration, or UI tests, using your favorite IDE, IntelliJ IDEA. Day: Wedn…
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…
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 …
After writing a post for the Upsource blog about evaluating tests during code review, I found myself compelled to write something more general on why we should be writing automated tests. If you already know the value of tests, you might find something here that will help convince your colleagues wh…
This is a cross-post from WebStorm & PhpStorm blog, originally posted by Sergey Simonchik. Measuring JavaScript code coverage naturally complements unit testing. It provides a clear picture of which parts of your code remain untested, and helps you focus additional tests on the uncovered code. …
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 …
Latest Spring 3.1 features can be easily found in IntelliJ IDEA 11 release. If you've already started testing your applications with @Configuration classes and environment profiles, tell us how it works for you in IntelliJ IDEA.…
We've added a couple of new productivity features in IntelliJ IDEA 10.5 to make working with Groovy tests two bits more pleasant: 1. Now you can create tests for Groovy classes the same way you do in Java. You just need to invoke Create Test intention on the header of the class. 2. To navigate to …
With IntelliJ IDEA X you can write unit tests for your Android application using Android Testing Framework. Android unit tests are located in a separate test module, so first you need to add it (i.e. named tests) to your project, which must already contain an Android module (or module with Android f…
IntelliJ IDEA 10 gives you an easy way of generating bean dependencies for Spring Test Contexts. Simply hit Alt+Insert in your Spring Test to invoke the "Generate…" popup, select the "Bean dependency..." action to run and choose the beans you like. IntelliJ IDEA actually runs a live template ins…