blob: df87ac070e3e4866524d43338ae15f3fff4e65d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package org.openecomp.vid.roles;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses(
{ RoleValidatorTest.class, RoleProviderTest.class })
public class TestSuite { // nothing
}
|