blob: f634fbc9536785f03175c6ea82dafdb6ccbb1749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package org.onap.vid.model;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses(
{ ModelUtilTest.class, NewServiceTest.class, VolumeGroupTest.class, NewNodeTest.class, ServiceModelTest.class,
WorkflowTest.class, NewVNFTest.class })
public class TestSuite { // nothing
}
|