ByteArrayInputStream in = new ByteArrayInputStream(content);
GFileTO fileTO = new GFileTO(path, props, in);
GFileDAO fileDAO = new LocalGFileDAO(root);
// Create.
fileDAO.create(fileTO);
// Read.
fileTO = fileDAO.read(path);
assertEquals("Wrong path", path, fileTO.getPath());
props = fileTO.getProperties();