Skip to content
Snippets Groups Projects
Commit 746fa698 authored by ribeaudc's avatar ribeaudc
Browse files

add: - Unit test to check equality on GroupIdentifier.

minor: - @Test class annotation on 'EqualsHashCodeTestCase' extensions.
change: - 'RoleWithCode' changed to 'RoleWithIdentifier' (code is not unique for group).
- 'PredicateStore' renamed to 'PredicateFactory' (Predicate instances no longer stored).

SVN: 7382
parent 53ba957d
No related merge requests found
......@@ -16,6 +16,8 @@
package ch.systemsx.cisd.bds;
import org.testng.annotations.Test;
import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
/**
......@@ -23,6 +25,7 @@ import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
*
* @author Christian Ribeaud
*/
@Test
public final class DataSetTest extends EqualsHashCodeTestCase<DataSet>
{
......
......@@ -16,6 +16,8 @@
package ch.systemsx.cisd.bds;
import org.testng.annotations.Test;
import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
/**
......@@ -23,6 +25,7 @@ import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
*
* @author Christian Ribeaud
*/
@Test
public final class ExperimentIdentifierTest extends EqualsHashCodeTestCase<ExperimentIdentifier>
{
......
......@@ -16,6 +16,8 @@
package ch.systemsx.cisd.bds;
import org.testng.annotations.Test;
import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
/**
......@@ -23,6 +25,7 @@ import ch.systemsx.cisd.common.test.EqualsHashCodeTestCase;
*
* @author Christian Ribeaud
*/
@Test
public final class SampleTest extends EqualsHashCodeTestCase<Sample>
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment