Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b5ef0bd49c8b3377fda45e5cabc9a6f222994104 (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
/*******************************************************************************
 * Copyright (c) 2014 itemis AG (http://www.itemis.eu) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
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