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-2019 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: * Christian W. Damus - bugs 529542, 527686, 549565
14: *
15: *******************************************************************************/
16:
17: package org.eclipse.emf.ecp.ui.view.swt.test;
18:
19: import org.eclipse.emf.ecp.ui.view.internal.swt.ECPSWTViewImpl_PTest;
20: import org.eclipse.emf.ecp.ui.view.spi.swt.layout.PageLayout_PTest;
21: import org.eclipse.emf.ecp.ui.view.spi.swt.masterdetail.DetailViewManager_PTest;
22: import org.eclipse.emf.ecp.ui.view.swt.DefaultReferenceService_PTest;
23: import org.junit.runner.RunWith;
24: import org.junit.runners.Suite;
25:
26: /**
27: * Runs all tests.
28: *
29: */
30: @RunWith(Suite.class)
31: @Suite.SuiteClasses({ ECPSWTViewRenderer_PTest.class,
32:         DefaultReferenceService_PTest.class,
33:         DefaultCreateNewModelElementStrategyProvider_PTest.class,
34:         PageLayout_PTest.class,
35:         ECPSWTViewImpl_PTest.class,
36:         DetailViewManager_PTest.class,
37: })
38: public class AllTests {
39:
40: }