How to run multiple tests with Spring Boot

Viewed 14383

With Spring Boot 1.5, how could I run multiple tests which are in different classes?

E.g.

I have `Service1` tests in `Service1test.java`;

I have `Service2` tests in `Service2test.java`;

I shall need to run both in one go.

2 Answers
Related