lttng: Fix Javadoc and formatting in lttng2.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / src / org / eclipse / linuxtools / lttng2 / ui / tests / control / model / component / ModelImplTestSetup.java
1 /*******************************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.lttng2.ui.tests.control.model.component;
13
14 import junit.extensions.TestSetup;
15 import junit.framework.Test;
16
17 /**
18 * Test setup class for one-time setUp() and tearDown() across test cases.
19 */
20 @SuppressWarnings("javadoc")
21 public class ModelImplTestSetup extends TestSetup {
22
23 public ModelImplTestSetup(Test test) {
24 super(test);
25 }
26
27 /*
28 * (non-Javadoc)
29 * @see junit.extensions.TestSetup#setUp()
30 */
31 @Override
32 protected void setUp() throws Exception {
33 TraceControlTestFacility.getInstance().init();
34 }
35
36 /*
37 * (non-Javadoc)
38 * @see junit.extensions.TestSetup#tearDown()
39 */
40 @Override
41 protected void tearDown() throws Exception {
42 TraceControlTestFacility.getInstance().dispose();
43 }
44 }
This page took 0.030346 seconds and 5 git commands to generate.