* value conditions - invalid type.
* @throws Exception if failed
*/
@Test(expected = ExcelRuleExtractor.FormatException.class)
public void extractValueCondition_invalid_type() throws Exception {
ExcelRuleExtractor extractor = new LegacyExcelRuleExtractor();
Sheet sheet = sheet("invalid.xls");
extractor.extractValueCondition(sheet.getRow(5));
}