Skip to main content
summaryrefslogtreecommitdiffstats
blob: 48217426b18ba0f7a64ce5bcdaea67c64086fbc4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2009 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.callgraph.tests;

import junit.framework.TestCase;

import org.eclipse.linuxtools.callgraph.CallgraphView;

public class SystemTapGraphViewTest extends TestCase {
	private CallgraphView stapView = new CallgraphView();
	private String testText = "blah";
	
	public void test() {
		System.out.println("\n\nLaunching RunSystemTapActionTest\n");

		CallgraphView.forceDisplay();
		
		stapView.println(testText);
		assertEquals(stapView.getText(), testText);
		
		stapView.clearAll();
		assertEquals(stapView.getText(), "");
	}
	
}

Back to the top