Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-09-29 11:10:31 +0000
committerTomasz Zarna2008-09-29 11:10:31 +0000
commita1e0c68674d905ef8436e6e51004882db08b75a2 (patch)
treea44aec698e2161d1d445ac9aba4ad3d11bda27a1 /tests/org.eclipse.core.tests.net
parentd37ce8b1ef66eae78a0682ee1623e299f068bb8c (diff)
downloadeclipse.platform.team-a1e0c68674d905ef8436e6e51004882db08b75a2.tar.gz
eclipse.platform.team-a1e0c68674d905ef8436e6e51004882db08b75a2.tar.xz
eclipse.platform.team-a1e0c68674d905ef8436e6e51004882db08b75a2.zip
bug 246072: [Net] Native proxy libraries support for getting native provider name
Diffstat (limited to 'tests/org.eclipse.core.tests.net')
-rw-r--r--tests/org.eclipse.core.tests.net/META-INF/MANIFEST.MF4
-rw-r--r--tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java3
2 files changed, 4 insertions, 3 deletions
diff --git a/tests/org.eclipse.core.tests.net/META-INF/MANIFEST.MF b/tests/org.eclipse.core.tests.net/META-INF/MANIFEST.MF
index 745fe8866..700d7f019 100644
--- a/tests/org.eclipse.core.tests.net/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.core.tests.net/META-INF/MANIFEST.MF
@@ -2,10 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Net Tests Plug-in
Bundle-SymbolicName: org.eclipse.core.tests.net
-Bundle-Version: 1.1.100.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.eclipse.core.tests.net.Activator
Bundle-Vendor: Eclipse.org
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.3.0,4.0.0)",
org.eclipse.core.net;bundle-version="[1.0.0,2.0.0)",
org.junit
-Eclipse-LazyStart: true
+Bundle-ActivationPolicy: lazy
diff --git a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
index c0aa90e51..6feca7f5d 100644
--- a/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
+++ b/tests/org.eclipse.core.tests.net/src/org/eclipse/core/tests/net/NetTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation 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
@@ -73,6 +73,7 @@ public class NetTest extends TestCase {
assertEquals(expectedData.getUserId(), data.getUserId());
assertEquals(expectedData.getPassword(), data.getPassword());
assertEquals(expectedData.isRequiresAuthentication(), data.isRequiresAuthentication());
+ assertEquals(expectedData.getSource(), data.getSource());
assertSystemPropertiesMatch(data);
}

Back to the top