File tree Expand file tree Collapse file tree 5 files changed +13
-0
lines changed
singa-chemistry/src/test/java/bio/singa/chemistry/features Expand file tree Collapse file tree 5 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ void shouldFetchImageForMethanolFromChEBIDatabase() {
2929 }
3030
3131 @ Test
32+ @ Disabled
3233 void shouldBeAbleToFetchLogPWithChEBISpecies () {
3334 SmallMolecule testSpecies = ChEBIParserService .parse ("CHEBI:8772" );
3435 // get feature
Original file line number Diff line number Diff line change 77import bio .singa .features .identifiers .InChIKey ;
88import bio .singa .features .identifiers .PubChemIdentifier ;
99import bio .singa .features .quantities .MolarMass ;
10+ import org .junit .jupiter .api .Disabled ;
1011import org .junit .jupiter .api .Test ;
1112
1213import static org .junit .jupiter .api .Assertions .assertEquals ;
1718class PubChemParserServiceTest {
1819
1920 @ Test
21+ @ Disabled
2022 void shouldParseSpecies () {
2123 SmallMolecule species = PubChemParserService .parse ("CID:962" );
2224 // name
Original file line number Diff line number Diff line change 66import bio .singa .features .identifiers .PubChemIdentifier ;
77import bio .singa .features .identifiers .model .Identifier ;
88import org .junit .jupiter .api .BeforeAll ;
9+ import org .junit .jupiter .api .Disabled ;
910import org .junit .jupiter .api .DisplayName ;
1011import org .junit .jupiter .api .Test ;
1112
@@ -27,6 +28,7 @@ static void initialize() {
2728
2829 @ Test
2930 @ DisplayName ("parse unichem - chebi identifier" )
31+ @ Disabled
3032 void fetchChEBIIdentifier () {
3133 for (Identifier identifier : identifiers ) {
3234 if (identifier instanceof ChEBIIdentifier ) {
@@ -39,6 +41,7 @@ void fetchChEBIIdentifier() {
3941
4042 @ Test
4143 @ DisplayName ("parse unichem - pubchem identifier" )
44+ @ Disabled
4245 void fetchPubChemIdentifier () {
4346 for (Identifier identifier : identifiers ) {
4447 if (identifier instanceof PubChemIdentifier ) {
@@ -51,6 +54,7 @@ void fetchPubChemIdentifier() {
5154
5255 @ Test
5356 @ DisplayName ("parse unichem - pdb ligand identifier" )
57+ @ Disabled
5458 void fetchPDBLigandIdentifier () {
5559 for (Identifier identifier : identifiers ) {
5660 if (identifier instanceof PDBLigandIdentifier ) {
Original file line number Diff line number Diff line change 55import bio .singa .features .identifiers .InChIKey ;
66import bio .singa .features .identifiers .PDBLigandIdentifier ;
77import org .junit .jupiter .api .BeforeAll ;
8+ import org .junit .jupiter .api .Disabled ;
89import org .junit .jupiter .api .DisplayName ;
910import org .junit .jupiter .api .Test ;
1011
@@ -32,13 +33,15 @@ static void initialize() {
3233
3334 @ Test
3435 @ DisplayName ("pdb ligand identifier provider - using chebi identifier" )
36+ @ Disabled
3537 void fetchWithChebi () {
3638 chebiEntity .setFeature (PDBLigandIdentifier .class );
3739 assertEquals ("TCI" , chebiEntity .getFeature (PDBLigandIdentifier .class ).toString ());
3840 }
3941
4042 @ Test
4143 @ DisplayName ("pdb ligand identifier provider - using inchi key" )
44+ @ Disabled
4245 void fetchWithInCHI () {
4346 inchiEntity .setFeature (PDBLigandIdentifier .class );
4447 assertEquals ("5OD" , inchiEntity .getFeature (PDBLigandIdentifier .class ).toString ());
Original file line number Diff line number Diff line change 22
33import bio .singa .chemistry .model .SmallMolecule ;
44import bio .singa .features .identifiers .PubChemIdentifier ;
5+ import org .junit .jupiter .api .Disabled ;
56import org .junit .jupiter .api .Test ;
67
78import static org .junit .jupiter .api .Assertions .assertEquals ;
1314class LogPTest {
1415
1516 @ Test
17+ @ Disabled
1618 void shouldUsePubChemToFetchLogP () {
1719 SmallMolecule testSpecies = SmallMolecule .create ("CID:5957" )
1820 .additionalIdentifier (new PubChemIdentifier ("CID:5957" ))
@@ -25,6 +27,7 @@ void shouldUsePubChemToFetchLogP() {
2527 }
2628
2729 @ Test
30+ @ Disabled
2831 void shouldFailToFetchLogP () {
2932 SmallMolecule testSpecies = SmallMolecule .create ("Test" ).build ();
3033 // get feature
You can’t perform that action at this time.
0 commit comments