@Verifies(value="shouldFetchLocationTagByName", method="getLocationTag(String identifier)")
public void shouldFetchLocationTagByName() throws Exception {
// this tag is in the regression test dataset
executeDataSet(XML_DATASET_PATH + new TestUtil().getTestDatasetFilename(XML_REGRESSION_TEST_DATASET));
LocationTag tag = HtmlFormEntryUtil.getLocationTag("Some Tag");
Assert.assertNotNull(tag);
Assert.assertEquals("Some Tag", tag.getTag());
}