blob: 5f24537f97213c467750b97867d1837ed52da1c0 [file] [log] [blame]
package org.onlab.junit;
/**
* Marker interface used to separate unit tests from integration tests. All
* integration tests should be marked with:
* {@literal @Category}(IntegrationTest.class)
* so that they can be run separately.
*/
public interface IntegrationTest {
}