Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b4e4e90f0785ab17bedc9540a09e6650cb5c9b37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.papyrus.uml.alf.backend.tests;

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

@RunWith(Suite.class)
@SuiteClasses({AlfUtilTests.class, BackupUtilTests.class})
public class AllTests {

}

Back to the top