use of org.eclipse.debug.core.model.IBreakpoint in project watchdog by TestRoots.
the class BreakpointCreatorTest method testCreateBreakpointDisabled.
@Test
public void testCreateBreakpointDisabled() throws CoreException {
IBreakpoint bp = mock(IBreakpoint.class);
when(bp.isEnabled()).thenReturn(false);
Breakpoint result = BreakpointCreator.createBreakpoint(bp);
assertFalse(result.isEnabled());
}
Aggregations