Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3a97ce5060d1c5e5e73802e231d91fdcd1e4133e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

package org.eclipse.linuxtools.lttng.tests.jni;

import junit.framework.TestCase;
import junit.framework.TestSuite;

@SuppressWarnings("nls")
public final class AllJniTests extends TestCase  {
    public static TestSuite suite() {
        TestSuite suite = new TestSuite("Testing JNI");
        
        suite.addTestSuite(JniTraceTest.class);
        suite.addTestSuite(JniTracefileTest.class);
        suite.addTestSuite(JniEventTest.class);
        suite.addTestSuite(JniMarkerTest.class);
        suite.addTestSuite(JniMarkerFieldTest.class);
        
        return suite;
    }
}

Back to the top