blob: 5f24537f97213c467750b97867d1837ed52da1c0 [file] [log] [blame]
Pingping32fa30c2014-10-23 15:24:26 -07001package org.onlab.junit;
2
3/**
4 * Marker interface used to separate unit tests from integration tests. All
5 * integration tests should be marked with:
6 * {@literal @Category}(IntegrationTest.class)
7 * so that they can be run separately.
8 */
9public interface IntegrationTest {
10}