mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
45 lines
1.5 KiB
Java
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());
|
|
}
|
|
};
|
|
}
|
|
}
|