use of org.eclipse.tracecompass.analysis.os.linux.core.tests.stubs.LinuxTestCase.PunctualInfo in project tracecompass by tracecompass.
the class InputOutputStateProviderTest method testStateProviderPunctualData.
/**
* Test the data of attributes at punctual times
*/
@Test
public void testStateProviderPunctualData() {
InputOutputAnalysisModule module = setUp(fTestCase.getTraceFileName());
assertNotNull(module);
TmfTestHelper.executeAnalysis(module);
ITmfStateSystem ss = module.getStateSystem();
assertNotNull(ss);
for (@NonNull PunctualInfo info : fTestCase.getPunctualTestData()) {
StateSystemTestUtils.testValuesAtTime(ss, info.getTimestamp(), info.getValues());
}
}
Aggregations