in src/main/java/org/apache/sling/commons/testing/jcr/RepositoryUtil.java [145:154]
public static boolean registerNodeType(Session session, InputStream source)
throws IOException, RepositoryException {
try {
CndImporter.registerNodeTypes(new InputStreamReader(source, "UTF-8"), session);
return true;
} catch (Exception e) {
// ignore
return false;
}
}