~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.lttng2.core.tests/src/org/eclipse/linuxtools/lttng2/core/tests/control/model/impl/AllTests.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2011 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.core.tests.control.model.impl;
 
13
 
 
14
import junit.framework.Test;
 
15
import junit.framework.TestSuite;
 
16
 
 
17
public class AllTests {
 
18
 
 
19
    public static Test suite() {
 
20
        
 
21
        TestSuite suite = new TestSuite(AllTests.class.getName());
 
22
        //$JUnit-BEGIN$
 
23
        suite.addTestSuite(BaseEventInfoTest.class);
 
24
        suite.addTestSuite(DomainInfoTest.class);
 
25
        suite.addTestSuite(EventInfoTest.class);
 
26
        suite.addTestSuite(ProbeEventInfoTest.class);
 
27
        suite.addTestSuite(ChannelInfoTest.class);
 
28
        suite.addTestSuite(SessionInfoTest.class);
 
29
        suite.addTestSuite(TraceInfoTest.class);
 
30
        suite.addTestSuite(UstProviderInfoTest.class);
 
31
        //$JUnit-END$
 
32
        return suite;
 
33
    }
 
34
}