use of org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowParser in project linuxtools by eclipse.
the class ChartStreamDaemonTest method setUp.
@Before
public void setUp() {
csd = new ChartStreamDaemon(null, null);
assertNotNull(csd);
csd1 = new ChartStreamDaemon(new RowDataSet(new String[] { "a" }), new RowParser(new String[] { "\\w", "\\s" }));
assertNotNull(csd1);
}
Aggregations