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