rcp: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.ctf.core.tests / src / org / eclipse / tracecompass / ctf / core / tests / trace / CTFStreamTest.java
index a1b79253fecdbd59e0e742a3417122aae5d49860..8d6102056c6aed732a9cf5fd200b056a47fbaf90 100644 (file)
@@ -20,10 +20,10 @@ import java.io.FilenameFilter;
 import java.util.Set;
 
 import org.eclipse.jdt.annotation.NonNull;
+import org.eclipse.tracecompass.ctf.core.CTFException;
 import org.eclipse.tracecompass.ctf.core.event.types.IDeclaration;
 import org.eclipse.tracecompass.ctf.core.event.types.StructDeclaration;
 import org.eclipse.tracecompass.ctf.core.tests.shared.CtfTestTrace;
-import org.eclipse.tracecompass.ctf.core.trace.CTFReaderException;
 import org.eclipse.tracecompass.ctf.core.trace.CTFStream;
 import org.eclipse.tracecompass.ctf.core.trace.CTFStreamInput;
 import org.eclipse.tracecompass.ctf.core.trace.CTFTrace;
@@ -57,10 +57,10 @@ public class CTFStreamTest {
     /**
      * Perform pre-test initialization.
      *
-     * @throws CTFReaderException
+     * @throws CTFException
      */
     @Before
-    public void setUp() throws CTFReaderException {
+    public void setUp() throws CTFException {
         fixture = new CTFStream(testTrace.getTrace());
         fixture.setEventContext(new StructDeclaration(1L));
         fixture.setPacketContext(new StructDeclaration(1L));
@@ -91,10 +91,10 @@ public class CTFStreamTest {
     /**
      * Run the Stream(CTFTrace) constructor test.
      *
-     * @throws CTFReaderException
+     * @throws CTFException
      */
     @Test
-    public void testStream() throws CTFReaderException {
+    public void testStream() throws CTFException {
         CTFTrace trace = testTrace.getTrace();
         CTFStream result = new CTFStream(trace);
         assertNotNull(result);
This page took 0.026111 seconds and 5 git commands to generate.