blob: 7402a1bb62c4df2b725296d66454b1ed11a6c42a [file] [log] [blame]
Ray Milkey10643572014-06-10 15:17:39 -07001package net.onrc.onos.core.util;
2
3/**
4 * Marker interface used to separate unit tests from integration tests. All
5 * integration tests should be marked with:
6 * @Category(IntegrationTest.class)
7 * so that they can be run separately.
8 */
9public interface IntegrationTest {
10}