Files
openide/plugins/stream-debugger/test/com/intellij/debugger/streams/exec/UserCodeExceptionTest.java
Alexey Korovin e16cbc4341 Fix packaging tests, added platform streams plugin into bundled plugins collection
GitOrigin-RevId: 115156819848e715fe81fabe9083854027e8e591
2025-02-13 23:59:33 +00:00

45 lines
1.5 KiB
Java

// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.debugger.streams.exec;
import com.intellij.debugger.streams.core.testFramework.TraceExecutionTestHelper;
import com.intellij.debugger.streams.core.trace.TracingResult;
import com.intellij.debugger.streams.core.wrapper.StreamChain;
import com.intellij.debugger.streams.test.ExecutionTestCaseHelper;
import com.intellij.debugger.streams.test.TraceExecutionTestCase;
import com.intellij.xdebugger.XDebugSession;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Vitaliy.Bibaev
*/
public class UserCodeExceptionTest extends TraceExecutionTestCase {
public void testExceptionInProducerCall() {
doTest(false);
}
public void testExceptionInTerminatorCall() {
doTest(false);
}
public void testExceptionInIntermediateCall() {
doTest(false);
}
public void testExceptionInStreamWithPrimitiveResult() {
doTest(false);
}
@Override
protected @NotNull TraceExecutionTestHelper getHelper(XDebugSession session) {
return new ExecutionTestCaseHelper(this, session, getLibrarySupportProvider(), myPositionResolver, LOG) {
@Override
protected void handleSuccess(@Nullable StreamChain chain, @Nullable TracingResult result, @Nullable Boolean resultMustBeNull) {
assertNotNull(result);
super.handleSuccess(chain, result, resultMustBeNull);
assertTrue(result.exceptionThrown());
}
};
}
}