public interface IntegrationTest
Marker interface used to mark integration tests. Integration tests will be run during the Maven integration-test phase, whereas unit tests will be run during the Maven test phase.
Integration tests can be in the same package as unit tests. To mark a test as integration test, add the annotation @Category(IntegrationTest.class) to the class definition as well as to its hierarchy of superclasses. For example:Copyright © 2019 The Apache Software Foundation. All Rights Reserved.