Skip to content
Snippets Groups Projects
Commit 1eb28a71 authored by gpawel's avatar gpawel
Browse files

removing invalid test

SVN: 24520
parent 92c65524
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,6 @@ import org.testng.AssertJUnit;
import org.testng.annotations.Test;
import ch.systemsx.cisd.common.evaluator.EvaluatorException;
import ch.systemsx.cisd.common.exceptions.UserFailureException;
import ch.systemsx.cisd.openbis.generic.shared.CommonTestUtils;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ManagedComboBoxInputWidgetDescription;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ManagedHtmlWidgetDescription;
......@@ -339,25 +338,6 @@ public class ManagedPropertyEvaluatorTest extends AssertJUnit
assertEquals("[A, 42]", evaluator.getBatchColumnNames().toString());
}
@Test
public void testUpdateFromBatchInputCallsAssertBatchColumnNames()
{
ManagedPropertyEvaluator evaluator = new ManagedPropertyEvaluator("");
ManagedProperty property = new ManagedProperty();
property.setPropertyTypeCode("p");
Map<String, String> bindings = new HashMap<String, String>();
bindings.put("A", "42");
try
{
evaluator.updateFromBatchInput(property, bindings);
fail("UserFailureException expected");
} catch (UserFailureException ex)
{
assertEquals("No subcolumns expected for property 'p': [A]", ex.getMessage());
}
}
@Test
public void testUpdateFromBatchInputWithNoScript()
{
......
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