Skip to content
Snippets Groups Projects
Commit e8dfc5e3 authored by cramakri's avatar cramakri
Browse files

LMS-1343 Splitting the ViewingTestSuite 2.

SVN: 14528
parent b90142ff
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,6 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.SampleBrow
import ch.systemsx.cisd.openbis.generic.client.web.client.application.SearchTest;
import ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.dataset.GenericDataSetViewerTest;
import ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.experiment.GenericExperimentAttachmentDownloadTest;
import ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.experiment.GenericExperimentViewerTest;
import ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.sample.GenericSampleViewerTest;
/**
......@@ -55,7 +54,6 @@ public class ViewingTestSuite2 extends GWTTestSuite
// (NS_ERROR_DOM_SECURITY_ERR): Security error on CC
// testSuite.addTestSuite(GenericExperimentRegistrationTest.class);
testSuite.addTestSuite(GenericExperimentViewerTest.class);
testSuite.addTestSuite(PropertyTypeBrowserTest.class);
testSuite.addTestSuite(PropertyTypeAssignmentBrowserTest.class);
testSuite.addTestSuite(GenericExperimentAttachmentDownloadTest.class);
......
/*
* Copyright 2010 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic;
import junit.framework.Test;
import junit.framework.TestSuite;
import com.google.gwt.junit.tools.GWTTestSuite;
import ch.systemsx.cisd.openbis.plugin.generic.client.web.client.application.experiment.GenericExperimentViewerTest;
/**
* @author Chandrasekhar Ramakrishnan
*/
public class ViewingTestSuite3 extends GWTTestSuite
{
public static Test suite()
{
final TestSuite testSuite = new TestSuite("Viewing Tests 3");
testSuite.addTestSuite(GenericExperimentViewerTest.class);
return testSuite;
}
}
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