blob: cad8df0d98fa44e6aee80a1ee456a8f8e1f60f1b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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
*
* Contributors:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylar.context.tests;
import org.eclipse.mylar.internal.context.core.MylarContext;
import org.eclipse.mylar.internal.context.core.ScalingFactors;
import org.eclipse.mylar.monitor.core.InteractionEvent;
/**
* @author Mik Kersten
*/
public class MylarContextTest extends AbstractContextTest {
public void testParseEventWithNullHandle() {
InteractionEvent event = mockSelection(null);
MylarContext context = new MylarContext("test", new ScalingFactors());
assertNull(context.parseEvent(event));
}
}