Search in sources :

Example 1 with RowParser

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);
}
Also used : RowDataSet(org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowDataSet) ChartStreamDaemon(org.eclipse.linuxtools.systemtap.graphing.core.structures.ChartStreamDaemon) RowParser(org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowParser) Before(org.junit.Before)

Aggregations

RowDataSet (org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowDataSet)1 RowParser (org.eclipse.linuxtools.systemtap.graphing.core.datasets.row.RowParser)1 ChartStreamDaemon (org.eclipse.linuxtools.systemtap.graphing.core.structures.ChartStreamDaemon)1 Before (org.junit.Before)1