public void testLibraryExists() throws Exception {
setupFacesRequest();
ResourceHandler resourceHandler = facesContext.getApplication().getResourceHandler();
assertTrue(resourceHandler.libraryExists("org.richfaces.resource.test"));
}
private String unifyWhitespace(String source) {
String result = source.replaceAll("(\n|\r)", "").replaceAll("\\t", " ").replaceAll(" {2,}", " ");