Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5579279e4952ea70fca7dabb0e3965e748704376 (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.systemtap.ui.graphingapi.nonui.tests.adapters;

import junit.framework.TestCase;

public class BlockAdapterTest extends TestCase {
	public BlockAdapterTest(String name) {
		super(name);
	}

	protected void setUp() throws Exception {
		super.setUp();
	}

	public void testIsValid() {
	}
	
	protected void tearDown() throws Exception {
		super.tearDown();
	}
}

Back to the top