/**
* run the test.
*/
@Test
public void insertTest() {
Picture picture = new Picture();
picture.setDetail(new Details());
picture.setName("mypicture");
picture.getDetail().setFileName("otavio.png");
byte[] file = new byte[SIZE];
new Random().nextBytes(file);
picture.getDetail().setContents(file);
Assert.assertTrue(dao.insert(picture));
}