Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9bcd69f1c153227c709780dca1d161bcbac9d282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*****************************************************************************
 * Copyright (c) 2017, 2019 CEA LIST and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   CEA LIST - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.infra.emf.expressions.tests;

import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(ClassificationSuite.class)
@SuiteClasses({
		AndExpressionTests.class,
		LiteralFalseExpressionTests.class,
		LiteralTrueExpressionTests.class,
		NotExpressionTests.class,
		OrExpressionTests.class,
		ReferenceExpressionTests.class,
		SingleEAttributeValueEqualityExpressionTests.class
})


public class AllTests {
	// JUnit 4 test suite

}

Back to the top