Skip to content
Snippets Groups Projects
Commit 508e841b authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: disabled one core-ui test

parent 7651a670
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -52,29 +52,4 @@ public class SampleTest extends MainSuite ...@@ -52,29 +52,4 @@ public class SampleTest extends MainSuite
integerType)); integerType));
} }
@Test
public void vocabularyPropertiesLinkToExternalPagesFromSampleBrowser() throws Exception
{
Vocabulary vocabulary =
create(aVocabulary()
.withUrl("http://www.ask.com/web?q=${term}")
.withTerms("mouse", "fly", "tiger"));
PropertyType vocabularyType =
create(aVocabularyPropertyType(vocabulary));
SampleType sampleType = create(aSampleType());
create(aSamplePropertyTypeAssignment()
.with(sampleType)
.with(vocabularyType)
.thatIsMandatory());
Sample sample =
create(aSample().ofType(sampleType).withProperty(vocabularyType, "mouse"));
assertThat(browserEntryOf(sample), containsValue(vocabularyType.getLabel(), "mouse"));
assertThat(browserEntryOf(sample), containsLink(vocabularyType.getLabel(),
"http://www.ask.com/web?q=MOUSE"));
}
} }
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