Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 768fbe55edcf17bec76b6e1d8900123a8a7c69c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
 * Copyright (c) 2014 itemis AG (http://www.itemis.eu) and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.debug.tests.stepfilters;

import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.model.IStepFilter;
import org.eclipse.debug.tests.AbstractDebugTest;

/**
 * Tests step filters
 */
public class StepFiltersTests extends AbstractDebugTest {

	public void testStepFitlersExtension_01() {
		IStepFilter[] stepFilters = DebugPlugin.getStepFilters("com.example.lalala.model"); //$NON-NLS-1$
		assertNotNull(stepFilters);
		assertEquals(0, stepFilters.length);
	}

	public void testStepFitlersExtension_02() {
		IStepFilter[] stepFilters = DebugPlugin.getStepFilters("com.example.debug.model"); //$NON-NLS-1$
		assertNotNull(stepFilters);
		assertEquals(1, stepFilters.length);

		assertTrue(stepFilters[0].isFiltered(Boolean.TRUE));
		assertFalse(stepFilters[0].isFiltered(Boolean.FALSE));
		assertFalse(stepFilters[0].isFiltered(new Object()));
	}

}

Back to the top