new MutableStylePropertySetImpl(); // number of properties
ShorthandAnalyzer analyzer;
// check for null default value
try {
analyzer = new EdgeCharacteristicAnalyzer(
StyleShorthands.BORDER_COLOR, checkerMock, null, shorthandSetMock);
fail();
} catch (IllegalArgumentException e) {
// expected
}
final StyleValue defaultStyleValue =
StyleValueFactory.getDefaultInstance().getColorByRGB(null, 100);
analyzer = new EdgeCharacteristicAnalyzer(
StyleShorthands.BORDER_COLOR, checkerMock, defaultStyleValue,
shorthandSetMock);
analyzer.analyze(TargetEntity.ELEMENT, inputValues, deviceValuesMock);
// verify test