setupData("shared");
ResourcePersister resourcePersister = mock(ResourcePersister.class);
Snapshot snapshot = new Snapshot();
snapshot.setId(1000);
when(resourcePersister.getSnapshotOrFail(any(Resource.class))).thenReturn(snapshot);
sourcePersister = new SourcePersister(resourcePersister, new SnapshotSourceDao(getMyBatis()));
}