1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 21:45:22 +02:00

Cosmetics.

Change-Id: If8bd6e3abbc8160666ba45bacbb52aeb49bc6109
This commit is contained in:
Sergey Prigogin 2015-04-03 14:44:49 -07:00
parent bb7af88082
commit 01776b1d4f

View file

@ -17,15 +17,15 @@ import java.net.URISyntaxException;
import java.util.Arrays;
import java.util.Collection;
import junit.framework.JUnit4TestAdapter;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.junit.runner.RunWith;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import junit.framework.JUnit4TestAdapter;
@RunWith(Parameterized.class)
public class UNCPathConverterTest {
private URI testURI;
@ -52,8 +52,8 @@ public class UNCPathConverterTest {
// With server-based authority
{ new URI("ssh", "user:password", "example.com", 8080, "/foo/bar", null, null), Path.fromOSString("//example.com/foo/bar") },
// With Registry-based authority
{new URI("remotetools", "My Connection", "/foo/bar", null, null), Path.fromOSString("//My Connection/foo/bar")}}
);
{ new URI("remotetools", "My Connection", "/foo/bar", null, null), Path.fromOSString("//My Connection/foo/bar") }
});
}
@Test