-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 1.3.0. Added support for multiple etcd discovery clients (for
multiple etcd servers
- Loading branch information
1 parent
5a77773
commit 02deb34
Showing
7 changed files
with
181 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...ipse.ecf.provider.etcd3/src/test/java/org/eclipse/ecf/provider/etcd3/test/TestMyCode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package org.eclipse.ecf.provider.etcd3.test; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import aQute.launchpad.Launchpad; | ||
import aQute.launchpad.LaunchpadBuilder; | ||
import aQute.launchpad.Service; | ||
import aQute.launchpad.junit.LaunchpadRunner; | ||
@RunWith(LaunchpadRunner.class) | ||
public class TestMyCode extends junit.framework.TestCase { | ||
|
||
LaunchpadBuilder builder = new LaunchpadBuilder().runfw("org.apache.felix.framework").debug(); | ||
|
||
@Service | ||
Launchpad launchpad; | ||
|
||
@Test | ||
public void testMyCode() throws Exception { | ||
launchpad.report(); | ||
} | ||
} |