MatcherContextMock matcherContextMock = new MatcherContextMock(
"MatcherContext", expectations);
matcherContextMock.expects.getElementId().returns(10);
InlineStyleMatcher matcher = new InlineStyleMatcher(10);
MatcherResult matcherResult =
matcher.matchesWithinContext(matcherContextMock);
assertEquals("MatcherResult should be MATCHED",
MatcherResult.MATCHED, matcherResult);
}