* Sanity test
* @throws RepositoryException
*/
public void testSimpleDoc() throws RepositoryException {
MockRepositoryDocument mrd = new MockRepositoryDocument(
new MockRepositoryDateTime(50000), "docid2", "now is the time",
new MockRepositoryPropertyList());
Node n = new MockJcrNode(mrd);
Property p = n.getProperty("jcr:content");
Assert.assertNotNull(p);
String content = p.getString();