tmf: Enable the ctfadaptor and statistics unit tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / histogram / AllTests.java
CommitLineData
422f0fb8
BH
1/*******************************************************************************
2 * Copyright (c) 2011 Ericsson
64636df8 3 *
422f0fb8
BH
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
64636df8 8 *
422f0fb8
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
e0752744 12package org.eclipse.linuxtools.tmf.ui.tests.histogram;
422f0fb8
BH
13
14import junit.framework.Test;
15import junit.framework.TestSuite;
16
64636df8
BH
17/**
18 *
19 * Test suite class for histogram tests.
20 */
422f0fb8
BH
21public class AllTests {
22
64636df8
BH
23 /**
24 * @return the test suite
25 */
422f0fb8 26 public static Test suite() {
64636df8 27
422f0fb8
BH
28 TestSuite suite = new TestSuite(AllTests.class.getName());
29 //$JUnit-BEGIN$
30 suite.addTestSuite(HistogramDataModelTest.class);
31 //$JUnit-END$
32 return suite;
33 }
34}
This page took 0.038105 seconds and 5 git commands to generate.