final long project = studyManagement.newProject(bob, uc.getLab3(), new StudyManagement.ProjectInfo("Title", "area", ""));
final long file = uc.saveFile(bob);
final long workflowType = anyWorkflowType();
final long specie = anySpecie();
studyManagement.newExperiment(bob, project, uc.getLab3(), new StudyManagement.ExperimentInfo("Duplicated title", "area", workflowType, specie)
, false, restriction(bob), Collections.<StudyManagement.MetaFactor>emptyList(), noFactoredFile(file), new AnalysisBounds(), new ArrayList<Double>());
final long experiment = studyManagement.newExperiment(bob, project, uc.getLab3(), new StudyManagement.ExperimentInfo("Title", "another area", workflowType, specie)
, false, restriction(bob), Collections.<StudyManagement.MetaFactor>emptyList(), noFactoredFile(file), new AnalysisBounds(), new ArrayList<Double>());
studyManagement.updateExperiment(bob, experiment, project, new StudyManagement.ExperimentInfo("Duplicated title", "another area", workflowType, specie)
, false, restriction(bob), Collections.<StudyManagement.MetaFactor>emptyList(), noFactoredFile(file), new ArrayList<Double>());
}