-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #144 identifying single/multi valued properties
- Loading branch information
1 parent
e8c96e5
commit d50e4c0
Showing
15 changed files
with
804 additions
and
312 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
28 changes: 28 additions & 0 deletions
28
java/registry/src/test/java/io/opensaber/registry/RegistryTestSuite.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,28 @@ | ||
package io.opensaber.registry; | ||
|
||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Suite; | ||
import org.junit.runners.Suite.SuiteClasses; | ||
|
||
import io.opensaber.registry.controller.RegistryControllerTest; | ||
import io.opensaber.registry.dao.impl.EncryptionDaoImplTest; | ||
import io.opensaber.registry.dao.impl.RegistryDaoImplTest; | ||
import io.opensaber.registry.service.impl.RegistryEncryptionServiceImplTest; | ||
import io.opensaber.registry.service.impl.RegistryServiceImplTest; | ||
import junit.framework.Test; | ||
import junit.framework.TestSuite; | ||
|
||
@SuiteClasses({RegistryDaoImplTest.class, RegistryControllerTest.class, RegistryServiceImplTest.class, | ||
EncryptionDaoImplTest.class, RegistryEncryptionServiceImplTest.class}) | ||
@RunWith(Suite.class) | ||
public class RegistryTestSuite { | ||
|
||
public static Test suite() { | ||
TestSuite suite = new TestSuite(RegistryTestSuite.class.getName()); | ||
//$JUnit-BEGIN$ | ||
|
||
//$JUnit-END$ | ||
return suite; | ||
} | ||
|
||
} |
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
Oops, something went wrong.