1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

Bug 386675 - Added a junit test for MapEntrySourceContainer

This commit is contained in:
Anton Leherbauer 2012-11-08 08:51:05 +01:00
parent 1546d1e149
commit c3bcb7fba7

View file

@ -0,0 +1,40 @@
/*******************************************************************************
* Copyright (c) 2012 Wind River Systems, Inc. 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.core.tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.cdt.debug.internal.core.sourcelookup.MapEntrySourceContainer;
import org.eclipse.core.runtime.IPath;
@SuppressWarnings("restriction")
public class MapEntrySourceContainerTests extends TestCase {
public static Test suite() {
return new TestSuite(MapEntrySourceContainerTests.class);
}
public MapEntrySourceContainerTests(String name) {
super(name);
}
public void testUNCPath() {
String uncPath = "//server/path/on/server";
IPath path = MapEntrySourceContainer.createPath(uncPath);
assertEquals(uncPath, path.toString());
uncPath = "\\\\server\\path\\on\\server";
path = MapEntrySourceContainer.createPath(uncPath);
assertEquals(uncPath, path.toOSString());
}
}