* Parse the css given in parameter and return the corresponding CssTree.
*/
protected CssTree parseAndBuildTree(String source) {
CssTree cssTree = parse(source);
ErrorManager errorManager = mock(ErrorManager.class);
runPassesOnNewTree(cssTree, errorManager);
// we don't expect a failure here
verify(errorManager, never()).report(any(GssError.class));