Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
4ea31030
Commit
4ea31030
authored
14 years ago
by
cramakri
Browse files
Options
Downloads
Patches
Plain Diff
LMS-1584 Changes to fix problems with Spring on CC.
SVN: 16703
parent
2bc9247b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/etl/genedata/FeatureStorageProcessorTest.java
+12
-0
12 additions, 0 deletions
...openbis/dss/etl/genedata/FeatureStorageProcessorTest.java
with
12 additions
and
0 deletions
screening/sourceTest/java/ch/systemsx/cisd/openbis/dss/etl/genedata/FeatureStorageProcessorTest.java
+
12
−
0
View file @
4ea31030
...
...
@@ -37,6 +37,7 @@ import ch.systemsx.cisd.openbis.dss.etl.dataaccess.IImagingUploadDAO;
import
ch.systemsx.cisd.openbis.dss.etl.dataaccess.ImgDatasetDTO
;
import
ch.systemsx.cisd.openbis.dss.etl.dataaccess.ImgFeatureDefDTO
;
import
ch.systemsx.cisd.openbis.dss.etl.dataaccess.ImgFeatureValuesDTO
;
import
ch.systemsx.cisd.openbis.dss.generic.shared.IEncapsulatedOpenBISService
;
import
ch.systemsx.cisd.openbis.dss.generic.shared.dto.DataSetInformation
;
import
ch.systemsx.cisd.openbis.generic.shared.basic.dto.Experiment
;
import
ch.systemsx.cisd.openbis.generic.shared.basic.dto.GenericValueEntityProperty
;
...
...
@@ -66,6 +67,8 @@ public class FeatureStorageProcessorTest extends AbstractFileSystemTestCase
private
DataSource
dataSource
;
private
IEncapsulatedOpenBISService
openBisService
;
@Override
@BeforeMethod
public
void
setUp
()
throws
IOException
...
...
@@ -75,6 +78,7 @@ public class FeatureStorageProcessorTest extends AbstractFileSystemTestCase
context
=
new
Mockery
();
dao
=
context
.
mock
(
IImagingUploadDAO
.
class
);
dataSource
=
context
.
mock
(
DataSource
.
class
);
openBisService
=
context
.
mock
(
IEncapsulatedOpenBISService
.
class
);
context
.
checking
(
new
Expectations
()
{
...
...
@@ -135,6 +139,14 @@ public class FeatureStorageProcessorTest extends AbstractFileSystemTestCase
// Overide because we have problems with Spring otherwise.
return
dataSource
;
}
@Override
protected
IEncapsulatedOpenBISService
createOpenBisService
()
{
// Overide because we have problems with Spring otherwise.
return
openBisService
;
}
};
DataSetInformation
dataSetInfo
=
createDataSetInformation
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment