Skip to content
Snippets Groups Projects
Commit 1fd9d3e0 authored by piotr.gawron's avatar piotr.gawron
Browse files

fix on tests

parent 927d43c2
No related branches found
No related tags found
1 merge request!1Issue 37
......@@ -44,7 +44,7 @@ public class EnsemblAnnotator extends ElementAnnotator implements IExternalServi
/**
* Version of the rest API that is supported by this annotator.
*/
static final String SUPPORTED_VERSION = "4.6";
static final String SUPPORTED_VERSION = "4.7";
/**
* Url address of ensembl restfull service.
......@@ -124,7 +124,7 @@ public class EnsemblAnnotator extends ElementAnnotator implements IExternalServi
String version = getRestfulApiVersion();
if (!SUPPORTED_VERSION.equals(version)) {
logger.debug("Version of Ensembl API changed...");
logger.debug("Version of Ensembl API changed... (new version: " + version + ")");
status.setStatus(ExternalServiceStatusType.CHANGED);
}
......
......@@ -4,58 +4,30 @@ import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import lcsb.mapviewer.model.map.species.AntisenseRnaComparatorTest;
import lcsb.mapviewer.model.map.species.ComplexComparatorTest;
import lcsb.mapviewer.model.map.species.DegradedComparatorTest;
import lcsb.mapviewer.model.map.species.DrugComparatorTest;
import lcsb.mapviewer.model.map.species.ElementComparatorTest;
import lcsb.mapviewer.model.map.species.GeneComparatorTest;
import lcsb.mapviewer.model.map.species.IonChannelProteinTest;
import lcsb.mapviewer.model.map.species.PhenotypeComparatorTest;
import lcsb.mapviewer.model.map.species.ProteinComparatorTest;
import lcsb.mapviewer.model.map.species.ReceptorProteinTest;
import lcsb.mapviewer.model.map.species.RnaComparatorTest;
import lcsb.mapviewer.model.map.species.SimpleMoleculeComparatorTest;
import lcsb.mapviewer.model.map.species.SpeciesComparatorTest;
import lcsb.mapviewer.model.map.species.TruncatedProteinTest;
import lcsb.mapviewer.model.map.species.UnknownComparatorTest;
@RunWith(Suite.class)
@SuiteClasses({ AntisenseRnaComparatorTest.class, //
AntisenseRnaRegionTest.class, //
@SuiteClasses({ AntisenseRnaRegionTest.class, //
AntisenseRnaTest.class, //
CompartmentTest.class, //
ComplexComparatorTest.class, //
ComplexSpeciesTest.class, //
ConnectSchemeTest.class, //
DegradedComparatorTest.class, //
DegradedTest.class, //
DrugComparatorTest.class, //
DrugTest.class, //
ElementComparatorTest.class, //
ElementTest.class, //
GeneComparatorTest.class, //
GenericProteinTest.class, //
GeneTest.class, //
IonChannelProteinTest.class, //
IonTest.class, //
LinePropertiesTest.class, //
ModificationResidueTest.class, //
PhenotypeComparatorTest.class, //
PhenotypeTest.class, //
ProteinComparatorTest.class, //
ProteinTest.class, //
ReceptorProteinTest.class, //
RnaComparatorTest.class, //
RnaRegionTest.class, //
RnaTest.class, //
SimpleMoleculeComparatorTest.class, //
SimpleMoleculeTest.class, //
SpeciesComparatorTest.class, //
SpeciesStateTest.class, //
SpeciesTest.class, //
TruncatedProteinTest.class, //
UnknownComparatorTest.class, //
UnknownTest.class, //
ViewTest.class, //
})
......
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