Skip to content

Package: AllTests

AllTests

nameinstructionbranchcomplexitylinemethod
AllTests()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eugen Neufeld - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emf.ecp.ui.view.editor.controls.test;
15:
16: import org.eclipse.emf.ecp.view.internal.editor.controls.ExpectedValueControlRenderer_Test;
17: import org.eclipse.emf.ecp.view.internal.editor.controls.LeafConditionControlRenderer_Test;
18: import org.eclipse.emf.ecp.view.internal.editor.controls.LeafConditionSegmentControlRenderer_PTest;
19: import org.eclipse.emf.ecp.view.internal.editor.controls.TableColumnsDMRTableControl_Test;
20: import org.eclipse.emf.ecp.view.internal.editor.handler.ControlGenerator_PTest;
21: import org.eclipse.emf.ecp.view.internal.editor.handler.GenerateControlsHandler_Test;
22: import org.eclipse.emf.ecp.view.internal.editor.handler.GenerateTableColumnSegmentDmrsHandler_Test;
23: import org.eclipse.emf.ecp.view.internal.editor.handler.LeafConditionDmrNewModelElementStrategyProvider_Test;
24: import org.eclipse.emf.ecp.view.internal.editor.handler.LeafConditionDmrOpenInNewContextStrategyProvider_Test;
25: import org.junit.runner.RunWith;
26: import org.junit.runners.Suite;
27: import org.junit.runners.Suite.SuiteClasses;
28:
29: /**
30: * @author Eugen Neufeld
31: *
32: */
33: @RunWith(Suite.class)
34: @SuiteClasses({
35:         SelectAttributes_Test.class,
36:         ControlGenerator_PTest.class,
37:         Helper_Test.class,
38:         GenerateControlsHandler_Test.class,
39:         ExpectedValueControlRenderer_Test.class,
40:         LeafConditionControlRenderer_Test.class,
41:         TableColumnsDMRTableControl_Test.class,
42:         LeafConditionSegmentControlRenderer_PTest.class,
43:         LeafConditionDmrNewModelElementStrategyProvider_Test.class,
44:         LeafConditionDmrOpenInNewContextStrategyProvider_Test.class,
45:         GenerateTableColumnSegmentDmrsHandler_Test.class
46: })
47: public class AllTests {
48:
49: }