Skip to content
Snippets Groups Projects
Commit 28ae1954 authored by jakubs's avatar jakubs
Browse files

dirty commit - to debug problem on hudson

SVN: 26632
parent dd6f9687
No related branches found
No related tags found
No related merge requests found
......@@ -17,11 +17,15 @@
package ch.systemsx.cisd.openbis.datastoreserver.systemtests;
import java.io.File;
import java.net.URL;
import java.security.CodeSource;
import java.security.ProtectionDomain;
import java.util.LinkedList;
import java.util.List;
import org.testng.annotations.Test;
import ch.systemsx.cisd.common.filesystem.AbstractCopyActivitySensor;
import ch.systemsx.cisd.common.filesystem.FileUtilities;
import ch.systemsx.cisd.openbis.dss.generic.shared.IEncapsulatedOpenBISService;
import ch.systemsx.cisd.openbis.dss.generic.shared.ServiceProvider;
......@@ -55,6 +59,17 @@ public class FeatureRichDataSetImportSystemTest extends SystemTestCase
return 280;
}
@Test
public void testFailForDebugReason()
{
Class cls = AbstractCopyActivitySensor.class;
ProtectionDomain pDomain = cls.getProtectionDomain();
CodeSource cSource = pDomain.getCodeSource();
URL loc = cSource.getLocation();
fail("The AbstractCopyActivitySensor is taken from " + loc);
}
@Test
public void testRichImport() throws Exception
{
......
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