Skip to main content
summaryrefslogtreecommitdiffstats
blob: 40372cc5a9590480d52771df0acada41de03fa66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.osee.framework.lifecycle.test.internal;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({ //
LifecycleServiceTest.class, //
      LifecycleOperationTest.class, //
})
public class InternalLifecycleTestSuite {

}

Back to the top